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.
https://app.netlify.com/teams/chetanpatidar11/overview
https://github.com/avigupta10/YogaClassroom.git
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
To start the web server you need to run the following sequence of commands.
Run the django web server.
python manage.py runserver
First cd into the frontend
folder.
cd frontend
Next install all dependicies.
npm i