-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
32 lines (25 loc) · 735 Bytes
/
Copy pathenv.example
File metadata and controls
32 lines (25 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Environment Configuration Template
# Copy this file to .env and fill in your values
# Application
NODE_ENV=development
PORT=3000
APP_NAME=ci-test
# Database
DATABASE_URL=postgresql://user:password@localhost:5432/ci_test_dev
REDIS_URL=redis://localhost:6379
# Feature Flags
FEATURE_NEW_UI=false
FEATURE_ADVANCED_ANALYTICS=false
FEATURE_BETA_FEATURES=false
# External Services
API_BASE_URL=https://api.example.com
WEBHOOK_SECRET=your_webhook_secret_here
# Security
JWT_SECRET=your_jwt_secret_here
ENCRYPTION_KEY=your_encryption_key_here
# Monitoring
SENTRY_DSN=https://your-sentry-dsn@sentry.io/project-id
LOG_LEVEL=info
# Third-party integrations
STRIPE_SECRET_KEY=sk_test_your_stripe_key
SENDGRID_API_KEY=SG.your_sendgrid_key