I am learning Django. This is a practice project.
source bin/activatepython manage.py testpython manage.py runserverHere is a one-liner that can be run from the cli.
python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())# create new migrations based on model changes
python manage.py makemigrations
# then run migrations
python manage.py migrate