7 lines
350 B
Text
7 lines
350 B
Text
# 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
|