hostinger-django-demo/.env.example
thecyberlearn 2f3f1ea867 Initial commit: Django demo project for VPS deployment
🎉 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-29 21:50:08 +05:30

20 lines
518 B
Plaintext

# 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