Follows the series of videos from freeCodeCamp titled Python Django Web Framework - Full Course for Beginners
- Create virtual environment
virtualenv env
- Install django
pip install django black
- Start server
python manage.py runserver
- Create new app
python manage.py startapp <name>
- Create migrations
python manage.py makemigrations
- Run migrations
python manage.py migrate
- Blacken code before commits
black src