https://www.digitalocean.com/community/tutorials/build-a-to-do-application-using-django-and-react
pip install pipenv
git clone [email protected]:colinloretz/django-todo-react.git
Move into the directory
cd django-todo-react
Install dependencies
pipenv install
Before running your application, you need to activate the project's virtual environment created by pipenv. Do this with:
pipenv shell
In one terminal:
cd backend
In another terminal:
cd frontend
Install the dependencies
npm install
Start the frontend, which will also launch the app in your browser:
npm start