-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
67 lines (54 loc) · 1.44 KB
/
.env.example
File metadata and controls
67 lines (54 loc) · 1.44 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Example Environment Configuration
# Copy this file to .env.{environment} and fill in your values
# Database Configuration
DATABASE_URL=postgresql://username:password@localhost:5432/database_name
DATABASE_POOL_SIZE=10
DATABASE_TIMEOUT=30000
# API Configuration
API_KEY=your-api-key-here
API_SECRET=your-api-secret-here
API_BASE_URL=https://api.example.com
API_TIMEOUT=10000
# Redis Configuration
REDIS_URL=redis://localhost:6379
REDIS_PASSWORD=
REDIS_DB=0
# Authentication
JWT_SECRET=your-jwt-secret-here
JWT_EXPIRES_IN=7d
SESSION_SECRET=your-session-secret-here
# Email Configuration
SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=your-email@example.com
SMTP_PASS=your-email-password
FROM_EMAIL=noreply@example.com
# Application Settings
APP_NAME=MyApp
APP_ENV=development
APP_DEBUG=true
APP_URL=http://localhost:3000
PORT=3000
# Security
ENCRYPTION_KEY=your-encryption-key-here
CORS_ORIGIN=http://localhost:3000
# External Services
AWS_ACCESS_KEY_ID=your-aws-access-key
AWS_SECRET_ACCESS_KEY=your-aws-secret-key
AWS_REGION=us-east-1
AWS_S3_BUCKET=your-s3-bucket-name
# Analytics
GOOGLE_ANALYTICS_ID=GA-XXXXXXXXX
MIXPANEL_TOKEN=your-mixpanel-token
# Feature Flags
FEATURE_NEW_UI=false
FEATURE_BETA_FEATURES=false
# Logging
LOG_LEVEL=info
LOG_FORMAT=combined
# Monitoring
SENTRY_DSN=https://your-sentry-dsn@sentry.io/project-id
NEW_RELIC_LICENSE_KEY=your-newrelic-license-key
# Development Tools (only for development)
WEBPACK_DEV_SERVER=true
HOT_RELOAD=true