-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
40 lines (40 loc) · 1.46 KB
/
app.json
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
{
"name": "Twilio Flex Sample Backend",
"description": "An application that serves a websocket connection to facilitate outbound call orchestration. The websocket allows for posting of updates directly back to the front end client that made the call.",
"repository": "https://github.com/jhunter-twilio/outbound-dialing-backend.git",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": ["node", "express", "twilio", "outbound", "dialing"],
"addons": [],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"TWILIO_ACCOUNT_SID": {
"description": "Twilio Console Project Account Sid",
"value": "CHANGEME",
"required": true
},
"TWILIO_AUTH_TOKEN": {
"description": "Twilio Console Project Auth Token",
"value": "CHANGEME",
"required": true
},
"TWILIO_OUTBOUND_WORKFLOW_SID": {
"description": "TaskRouter workflow Sid dedicated to outbound calling",
"value": "CHANGEME",
"required": true
},
"TWILIO_FLEX_WORKSPACE_SID": {
"description": "TaskRouter Flex Assignment Workspace Sid, generated when creating a twilio flex project",
"value": "CHANGEME",
"required": true
},
"EXTERNAL_HOST": {
"description": "The hostname in the form \"<HEROKU_APP_NAME>.herokuapp.com\" of this service. Use to tell Twilio where to send call status updates for each call made from this system.",
"value": "CHANGEME",
"required": true
}
}
}