Simple application TodoList django with ReactJS
Django
We basically follow the Django REST framework quickstart guide here.
Create backend folder with a virtual Python environment:
mkdir backend
cd backend
pipenv install; pipenv shell
Install Django and Django REST framework:
pipenv install django djangorestframework
Create Django project structure:
django-admin startproject backend .
cd backend
django-admin startapp todo
cd ..
Create Django super user:
./manage.py migrate
./manage.py createsuperuser --email