quantumtaskai-caprover/.env.dokploy.example
thecyberlearn ce841c7ec1 Add Dokploy deployment configuration
- Add dokploy.json configuration file
- Create Dockerfile.dokploy optimized for port 3000
- Add environment variables template for Dokploy
- Update Django settings for Dokploy auto-detection

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-05 02:40:02 +05:30

24 lines
803 B
Plaintext

# Required Environment Variables for Dokploy Deployment
# Django Core
SECRET_KEY=your-secret-key-here-generate-a-new-one
DEBUG=false
ALLOWED_HOSTS=yourdomain.com,www.yourdomain.com
# Database (PostgreSQL recommended for production)
DATABASE_URL=postgres://username:password@hostname:5432/database_name
# Optional - Email Configuration
EMAIL_HOST_USER=your-email@gmail.com
EMAIL_HOST_PASSWORD=your-app-password
# Optional - Stripe Payments
STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret
# Optional - Static Files (for custom S3/CDN)
# AWS_ACCESS_KEY_ID=your-aws-access-key
# AWS_SECRET_ACCESS_KEY=your-aws-secret-key
# AWS_STORAGE_BUCKET_NAME=your-bucket-name
# AWS_S3_REGION_NAME=us-east-1