# Django core DEBUG=false SECRET_KEY=your-secret-key-here # Allowed hosts (comma-separated) ALLOWED_HOSTS=yourdomain.com # CORS (comma-separated origins) CORS_ALLOWED_ORIGINS=https://yourdomain.com # Database (used when DATABASE_URL is not set) DB_NAME=werkout DB_USER=werkout DB_PASSWORD=your-db-password DB_HOST=db DB_PORT=5432 # Database URL (overrides individual DB_* vars when set) DATABASE_URL=postgres://user:password@db:5432/werkout # Redis REDIS_URL=redis://redis:6379 # HTTPS redirect (set to false if behind a reverse proxy that handles SSL) SECURE_SSL_REDIRECT=true