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