Skip to content

Commit 4c91cd6

Browse files
authored
Create .env.development
1 parent 8688950 commit 4c91cd6

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

config/.env.development

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Database Configuration
2+
DB_HOST=localhost
3+
DB_PORT=5432
4+
DB_NAME=eulers_shield_dev
5+
DB_USER=dev_user
6+
DB_PASSWORD=dev_password
7+
8+
# API Configuration
9+
API_URL=http://localhost:3000/api
10+
API_KEY=dev_api_key
11+
12+
# Logging Configuration
13+
LOG_LEVEL=debug
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_test_4eC39HqLyjWDarjtT1zdp7dc
22+
SENDGRID_API_KEY=SG.xxxxxxx
23+
24+
# CORS Configuration
25+
CORS_ORIGIN=http://localhost:3000
26+
27+
# Session Configuration
28+
SESSION_SECRET=supersecretdevelopmentkey
29+
SESSION_EXPIRY=3600 # 1 hour
30+
31+
# Environment Indicator
32+
NODE_ENV=development

0 commit comments

Comments
 (0)