Simple base project for Django REST backend server.
Working through the tutorial here: https://docs.djangoproject.com/en/3.0/intro/tutorial01/
This is another tutorial for REST API + React: https://www.valentinog.com/blog/drf/
coverage run --source='.' manage.py test
coverage html
coverage report
Database setup:
python manage.py makemigrations quotes
-- create a migrationpython manage.py migrate
- run the migrationpython manage.py flush
- reset the database- Delete the sqlite file and migrations to completely start over
- Create simple frontend react SPA
- JWT