You'll never travel alone.
Even if you'd want to.
Deployment:
.env-example
to .env
and change settings needed for deployment.db-env-example
to .db-env
and change settings neededapp/.env-example
to app/.env
and change settings needed for the appdocker compose build
docker compose run --rm app python3 manage.py migrate
to initialize the dbdocker compose run --rm app python3 manage.py createsuperuser
to create the superuserdocker compose run --rm app python3 manage.py collectstatic --no-input
to get static files in the correct places docker compose up -d
to deploy to localhost:8000