osprey/.env.example

17 lines
763 B
Text

# Twilio credentials — from console.twilio.com
TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
TWILIO_AUTH_TOKEN=your-auth-token-here
TWILIO_FROM_NUMBER=+1XXXXXXXXXX # your purchased Twilio number
# Osprey service config
OSPREY_BASE_URL=https://circuitforge.tech # public base URL for Twilio callbacks
OSPREY_BRIDGE_NUMBER=+1XXXXXXXXXX # your cell — gets called when in queue
OSPREY_STATE_FILE=/tmp/osprey_call_state.txt # shared state between webhook + dialer
# FTB IVR sequence — DTMF digits, commas = 0.5s pause
# Example: "1,,,2,,,0" = press 1, wait 1.5s, press 2, wait 1.5s, press 0
OSPREY_IVR_SEQUENCE=
# Retry config
OSPREY_RETRY_INTERVAL=180 # seconds between attempts (3 min default)
OSPREY_MAX_RETRIES=20