The code for Tech With Tim's "Django & React Full Stack Web App Tutorial" series.
pip install -r requirements.txt
To 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 runserver
First cd into the frontend
folder.
cd frontend
Next install all dependicies.
npm i
Run the production compile script
npm run build
or for development:
npm run dev