21 lines
549 B
Bash
21 lines
549 B
Bash
# Django Settings
|
|
DEBUG=True
|
|
SECRET_KEY=your-development-secret-key
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
|
|
|
# Database Settings (SQLite for development)
|
|
# For PostgreSQL in production, uncomment and set these:
|
|
# DATABASE_URL=postgres://user:password@host:port/dbname
|
|
# DB_NAME=your_db_name
|
|
# DB_USER=your_db_user
|
|
# DB_PASSWORD=your_db_password
|
|
# DB_HOST=your_db_host
|
|
# DB_PORT=5432
|
|
|
|
# Email Settings (optional)
|
|
# EMAIL_HOST=your_email_host
|
|
# EMAIL_PORT=587
|
|
# EMAIL_USE_TLS=True
|
|
# EMAIL_HOST_USER=your_email_user
|
|
# EMAIL_HOST_PASSWORD=your_email_password
|