# Django settings SECRET_KEY=your-super-secret-key-here DEBUG=True ALLOWED_HOSTS=localhost,127.0.0.1,yourdomain.com # Database settings (choose one approach) # Option 1: Use DATABASE_URL (recommended for production) # DATABASE_URL=postgresql://username:password@hostname:port/database_name # Option 2: Use individual PostgreSQL settings # USE_POSTGRES=True # DB_NAME=demo_db # DB_USER=demo_user # DB_PASSWORD=your_password # DB_HOST=localhost # DB_PORT=5432 # Production security settings SECURE_SSL_REDIRECT=False