Add initial Django project

This commit is contained in:
Joakim Hellsén 2026-04-23 06:04:47 +02:00
commit fa6af127c1
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
15 changed files with 1103 additions and 4 deletions

7
.env.example Normal file
View file

@ -0,0 +1,7 @@
# Django Secret Key (REQUIRED)
# Generate a strong secret key for production. Example: uv run python -c "from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())"
DJANGO_SECRET_KEY=your-secret-key-here
# Debug Mode
# Set to 'true' to enable debug mode (development only, never in production)
DJANGO_DEBUG=false