Skip to content

Commit 8d3e3d4

Browse files
authored
Create .env.production
1 parent 0e50cbe commit 8d3e3d4

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

config/.env.production

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

0 commit comments

Comments
 (0)