A template for a Django project with a flatter directory structure.
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cd mysite
python manage.py runserver 8000
cd mysite
gunicorn wsgi:application
cd mysite
uvicorn asgi:application