mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 09:52:57 +00:00
- 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>
24 lines
803 B
Plaintext
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 |