mirror of
https://github.com/thecyberlearn/hostinger-django-demo.git
synced 2026-08-18 08:52:57 +00:00
🎉 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
518 B
Plaintext
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 |