-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
17 lines (14 loc) · 1020 Bytes
/
Copy path.env.example
File metadata and controls
17 lines (14 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Server Configuration
HTTP_PORT=3000 # Port for the API server to listen on
# JWT Authentication
JWT_SECRET='' # Secret key for signing and verifying JSON Web Tokens (JWTs)
DEMO_USER='' # Username for demo login (used for generating a JWT)
DEMO_PASSWORD='' # Plain text password for demo login (will be hashed before comparison)
# BulkVS SMS Provider Configuration
BULKVS_AUTH_TOKEN='' # Basic Authentication token for the BulkVS API (often a base64 encoded username:password)
BULKVS_FROM_NUMBER='' # Default phone number to use as the sender for outbound SMS via BulkVS
# VoIP Innovations (VI) SMS Provider Configuration
VI_API_URL='https://backoffice.voipinnovations.com/Services/APIService.asmx' # URL for the VoIP Innovations SOAP API (if used)
VI_API_USERNAME='' # Username for VoIP Innovations API authentication
VI_API_PASSWORD='' # Password for VoIP Innovations API authentication
# Note: For the VI REST API (mysmsforward.com), credentials are also VI_API_USERNAME and VI_API_PASSWORD, used for Basic Auth.