Django version 2.0.x or up.
via HTTPS
git clone https://github.com/SanchayPahalwani/todo_backend.git
Upgrade virtualenv
pip install --upgrade virtualenv
virtualenv -p python3 env
source env/bin/activate
Install the file named requirements.txt:
pip install -U -r requirements.txt
After connecting the database, remember to apply the project migrations.
python manage.py makemigrations todo
python manage.py migrate
python manage.py runserver