-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
33 lines (26 loc) · 943 Bytes
/
env.example
File metadata and controls
33 lines (26 loc) · 943 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
33
# Server Configuration
PORT=3000
NODE_ENV=development
# MongoDB Configuration
MONGODB_URI=mongodb://localhost:27017/dispatchbot
# Twilio Configuration
TWILIO_ACCOUNT_SID=your_twilio_account_sid_here
TWILIO_AUTH_TOKEN=your_twilio_auth_token_here
TWILIO_FROM_NUMBER=+1234567890
TWILIO_WEBHOOK_URL=https://your-domain.com/webhooks/twilio
# Optional: Custom webhook URLs for specific endpoints
TWILIO_STATUS_WEBHOOK_URL=https://your-domain.com/webhooks/twilio/status
TWILIO_INBOUND_WEBHOOK_URL=https://your-domain.com/webhooks/twilio/inbound
# Logging Configuration
LOG_LEVEL=info
LOG_FILE=logs/dispatchbot.log
# Notification Queue Configuration
MAX_CONCURRENT_NOTIFICATIONS=5
NOTIFICATION_BATCH_SIZE=10
NOTIFICATION_PROCESS_INTERVAL=1000
# Emergency Contact Configuration
SUPPORT_TEAM_PHONE=+1234567890
EMERGENCY_CONTACT_PHONE=+1234567890
# Security Configuration (for production)
JWT_SECRET=your_jwt_secret_here
API_KEY=your_api_key_here