32 lines
803 B
Plaintext
32 lines
803 B
Plaintext
# Django Settings
|
|
DJANGO_SETTINGS_MODULE=config.settings.development
|
|
DJANGO_SECRET_KEY=your-secret-key-here-generate-a-new-one
|
|
DEV_SECRET_KEY=your-dev-secret-key-here
|
|
|
|
# Database (Production)
|
|
DB_NAME=nexus
|
|
DB_USER=postgres
|
|
DB_PASSWORD=your-database-password
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
|
|
# Allowed Hosts (Production)
|
|
DJANGO_ALLOWED_HOST=your-domain.com
|
|
|
|
# Email Settings (Production)
|
|
EMAIL_HOST=smtp.your-email-provider.com
|
|
EMAIL_PORT=587
|
|
EMAIL_HOST_USER=your-email@your-domain.com
|
|
EMAIL_HOST_PASSWORD=your-email-password
|
|
|
|
# Redis Cache (Production)
|
|
REDIS_URL=redis://localhost:6379/1
|
|
|
|
# Sentry Error Tracking (Optional)
|
|
SENTRY_DSN=
|
|
|
|
# Google API Integration (Optional)
|
|
# GOOGLE_CREDENTIALS_PATH=/path/to/credentials.json
|
|
# GOOGLE_CALENDAR_ID=primary
|
|
# GOOGLE_IMPERSONATOR_EMAIL=admin@your-domain.com
|