File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ # Database Configuration
2+ DB_HOST = prod-db-host
3+ DB_PORT = 5432
4+ DB_NAME = eulers_shield_prod
5+ DB_USER = prod_user
6+ DB_PASSWORD = prod_secure_password
7+
8+ # API Configuration
9+ API_URL = https://api.eulersshield.com
10+ API_KEY = prod_api_key
11+
12+ # Logging Configuration
13+ LOG_LEVEL = info
14+ LOG_FORMAT = json
15+
16+ # Feature Flags
17+ FEATURE_ENABLE_NEW_UI = true
18+ FEATURE_ENABLE_EXPERIMENTAL_FEATURE = false
19+
20+ # Third-party Service Keys
21+ STRIPE_SECRET_KEY = sk_live_4eC39HqLyjWDarjtT1zdp7dc
22+ SENDGRID_API_KEY = SG.production_key
23+
24+ # CORS Configuration
25+ CORS_ORIGIN = https://eulersshield.com
26+
27+ # Session Configuration
28+ SESSION_SECRET = supersecretproductionkey
29+ SESSION_EXPIRY = 86400 # 24 hours
30+
31+ # Environment Indicator
32+ NODE_ENV = production
33+
34+ # Security Features
35+ HTTPS_ENABLED = true
36+ HSTS_ENABLED = true
You can’t perform that action at this time.
0 commit comments