Production-ready Django template: Django 5.2 LTS · DRF · PostgreSQL · Redis (cache, sessions, celery) · Celery · uv · Docker Compose · nginx.
.
├── .envs # Environment variables (.local/ + .production(example)/)
├── compose # Dockerfiles and start/entrypoint scripts
├── config # Django project (settings/, celery, urls, wsgi/asgi)
├── src # Apps live in src/apps/<name>/ (account = reference app)
├── docs # Setup & usage guides
├── pyproject.toml # Dependencies (uv) — uv.lock is the lockfile
├── requirements # Generated exports from uv.lock (do not edit)
├── local.yml # Docker Compose for local development
├── production.yml # Docker Compose for production
└── Makefile # Shortcuts for everything below
- uv (for running without Docker, and for dependency management)
- Docker + Docker Compose (for the containerized setups)
Without Docker (SQLite + in-memory cache fallbacks, zero config):
make venv # uv sync
make run-local # migrate + runserver → http://127.0.0.1:8000With Docker (full stack: postgres, redis, celery, celery-beat):
make build # → http://localhost:8000Useful targets: make up, make down, make logs, make migrate, make makemigrations, make superuser, make shell, make lock (relock deps after editing pyproject.toml).
- Setup & run guide — template setup, local (with/without Docker), production deploy, logs, backups
- uv & Docker guide — dependency management workflow, compose details
- VDS deployment guide — Ubuntu server from zero: Docker, nginx + certbot, UFW, fail2ban, and one-command updates via
./scripts/deploy.sh
API docs (staff login required): http://localhost:8000/api/docs/ · Admin: http://localhost:8000/admin/panel/
ruff handles linting, import sorting, and formatting (config in pyproject.toml):
uv run pre-commit install # run on every commit
uv run pre-commit run --all-files # run manuallySee docs/setup-and-run.md. Short version: fill .envs/.production/ (copy from .envs/.production(example)/, generate secrets with openssl rand -hex 32), add TLS certs, then:
docker compose -f production.yml up -d --buildDeployment repo: https://github.com/firdavsDev/docker-template-deployment