31 lines
855 B
Plaintext
31 lines
855 B
Plaintext
# Django Configuration
|
|
DEBUG=True
|
|
SECRET_KEY=your-secret-key-here-change-this-in-production
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
|
|
|
# Database Configuration
|
|
DB_NAME=postgres_handholder
|
|
DB_USER=postgres
|
|
DB_PASSWORD=your-database-password
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
|
|
# Celery Configuration
|
|
CELERY_BROKER_URL=redis://localhost:6379/0
|
|
CELERY_RESULT_BACKEND=redis://localhost:6379/0
|
|
|
|
# AWS S3 Configuration (optional)
|
|
AWS_ACCESS_KEY_ID=your-aws-access-key
|
|
AWS_SECRET_ACCESS_KEY=your-aws-secret-key
|
|
AWS_STORAGE_BUCKET_NAME=your-backup-bucket
|
|
AWS_S3_REGION_NAME=us-east-1
|
|
|
|
# Google Cloud Storage Configuration (optional)
|
|
GOOGLE_CLOUD_STORAGE_BUCKET=your-gcs-bucket
|
|
GOOGLE_APPLICATION_CREDENTIALS=path/to/your/credentials.json
|
|
|
|
# Docker Configuration
|
|
DOCKER_HOST=unix://var/run/docker.sock
|
|
|
|
# Kubernetes Configuration (optional)
|
|
KUBECONFIG=path/to/your/kubeconfig |