Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 1.76 KB

README.md

File metadata and controls

65 lines (44 loc) · 1.76 KB

YogaClassroom

A Django React Application

This application is made in such a way that you dont need to compile react files in frontend, because django directly looking for the main templates/frontend/index.html HTML file, and all the neccesary compiled javascript is pointing to this file.

So just directly run python manage.py runserver after installing neccesary modules.

All the neccesary validations is happening in the backend of the application i.e ./YogaForm.

Entity-Relationship Diagram For YogaClasses

E-R UCL

DATABASE

DB-1 DB-2 DB-3

Try It

https://app.netlify.com/teams/chetanpatidar11/overview

Setup Instructions

Clone this repo

https://github.com/avigupta10/YogaClassroom.git

Create Virtual Environment and Install Required Python Modules

cd YogaClassroom

Install venv pip install virtualenv

For Creating a venv run this virtualenv -p python3 venv

Activate virtualenv venv\Scripts\activate

Install requirements

pip install -r requirements.txt

Start Web Server

To start the web server you need to run the following sequence of commands.

Run the django web server.

python manage.py runserver

Install Node Modules

First cd into the frontend folder.

cd frontend

Next install all dependicies.

npm i