13 lines
329 B
Plaintext
13 lines
329 B
Plaintext
# Django Settings
|
|
SECRET_KEY=your-secret-key-here
|
|
DEBUG=True
|
|
DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1
|
|
|
|
# Security
|
|
CSRF_TRUSTED_ORIGINS=https://yourdomain.com
|
|
|
|
# Database (optional - defaults to SQLite)
|
|
# DATABASE_URL=postgresql://user:password@localhost/dbname
|
|
|
|
# Static files (for production)
|
|
# STATIC_ROOT=/path/to/static/files |