Reference commands that we use in this project.
python manage.py migrate
python manage.py migrate --settings serverless_django.settings.production
python manage.py runserver --settings serverless_django.settings.production
DJANGO_SETTINGS_MODULE=serverless_django.settings.production python manage.py migrate
gunicorn serverless_django.wsgiwsgi:application
gunicorn serverless_django.wsgi:application --env DJANGO_SETTINGS_MODULE=serverless_django.settings.production
waitress-serve serverless_django.wsgi:application
DJANGO_SETTINGS_MODULE=serverless_django.settings.production waitress-serve --port=8000 serverless_django.wsgi:application