35 lines
996 B
Plaintext
35 lines
996 B
Plaintext
# Production Environment Variables
|
|
# Copy to .env.prod and fill in actual values
|
|
|
|
# Application Settings
|
|
TAG=latest
|
|
ENVIRONMENT=production
|
|
|
|
# Security
|
|
JWT_SECRET_KEY=your-super-secret-jwt-key-change-this-in-production
|
|
POSTGRES_PASSWORD=your-super-secret-database-password
|
|
REPLICATION_PASSWORD=your-replication-password
|
|
GRAFANA_PASSWORD=your-grafana-admin-password
|
|
|
|
# External Services
|
|
FCM_SERVER_KEY=your-firebase-cloud-messaging-server-key
|
|
TWILIO_ACCOUNT_SID=your-twilio-account-sid
|
|
TWILIO_AUTH_TOKEN=your-twilio-auth-token
|
|
SENDGRID_API_KEY=your-sendgrid-api-key
|
|
|
|
# SSL Certificates
|
|
SSL_CERT_PATH=/path/to/your/ssl/certificate.pem
|
|
SSL_KEY_PATH=/path/to/your/ssl/private.key
|
|
|
|
# Backup Settings
|
|
BACKUP_S3_BUCKET=your-backup-bucket
|
|
AWS_ACCESS_KEY_ID=your-aws-access-key
|
|
AWS_SECRET_ACCESS_KEY=your-aws-secret-key
|
|
|
|
# Monitoring
|
|
SENTRY_DSN=your-sentry-dsn-for-error-tracking
|
|
NEW_RELIC_LICENSE_KEY=your-new-relic-license-key
|
|
|
|
# Domain Settings
|
|
DOMAIN=your-domain.com
|
|
API_URL=https://api.your-domain.com |