DEBUG=True

# Database Configuration
SECRET_KEY=${SECRET_KEY}
DATABASE_URL=postgresql://${pg_user}:${pg_password}@db:5432/${pg_user}
POSTGRES_DB=${pg_user}
POSTGRES_USER=${pg_user}
POSTGRES_PASSWORD=${pg_password}
POSTGRES_HOST=db

# Email Configuration
EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
EMAIL_HOST=smtp.example.com
EMAIL_PORT=587
EMAIL_USE_TLS=True
EMAIL_HOST_USER=your-email@example.com
EMAIL_HOST_PASSWORD=your-password
DEFAULT_FROM_EMAIL=noreply@quickscale.app
SERVER_EMAIL=server@quickscale.app