20 lines
635 B
Plaintext
20 lines
635 B
Plaintext
# Production Environment Variables
|
|
# Use these values to create Kubernetes secrets
|
|
|
|
# Neon Database (Production branch)
|
|
DATABASE_URL=postgresql://user:password@ep-xxx.region.neon.tech/dbname?sslmode=require&pgbouncer=true
|
|
|
|
# JWT Secrets (use strong random strings - min 32 chars)
|
|
JWT_SECRET=your-production-jwt-secret-min-32-chars
|
|
JWT_REFRESH_SECRET=your-production-refresh-secret-min-32-chars
|
|
|
|
# Redis
|
|
REDIS_HOST=redis-service
|
|
REDIS_PORT=6379
|
|
|
|
# Notes:
|
|
# - Store these in Kubernetes secrets or GitHub Secrets
|
|
# - Never commit actual values to Git
|
|
# - Use kubectl create secret or GitHub Secrets for CI/CD
|
|
# - Rotate secrets regularly
|