The code for Tech With Tim's "Django & React Full Stack Web App Tutorial" series.
pip install -r requirements.txtTo start the web server you need to run the following sequence of commands.
First cd into your desired tutorial folder (replace x with tutorial number).
cd "Tutorial x"Next run the django web server.
python manage.py runserverFirst cd into the frontend folder.
cd frontendNext install all dependicies.
npm iRun the production compile script
npm run buildor for development:
npm run dev