You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Make a copy of this file with the name .env and populate the file with your environment variables
# Port number to run the server on
PORT=3030
# Twilio account sid
ACCOUNT_SID=ACxxxxxxxxxxxxxx
# Twilio API key
API_KEY_SID=SKxxxxxxxxxxxxxx
# Twilio API secret
API_KEY_SECRET=xxxxxxxxxxxxxx
# Twilio TwiML App sid where the Voice Request URL is set to
# https://yourdomain/twilio-voice-dialer/twiml
APP_SID=APxxxxxxxxxxxxxx
# Twilio auth token
AUTH_TOKEN=xxxxxxxxxxxxxx
# Caller ID
CALLER_ID=+11234567890
# If developing locally and running the Reference Components locally, consider using a tool like ngrok to proxy the server endpoints. Once proxied, change CALLBACK_BASE_URL to the ngrok URL endpoints.
# See more info about ngrok by visiting https://ngrok.com.