-
Notifications
You must be signed in to change notification settings - Fork 152
/
app.json
executable file
·36 lines (36 loc) · 1.43 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
{
"name": "Twilio Contact Center",
"description": "A web-based contact center utilizing Twilio Client, Chat, Video, SMS and TaskRouter",
"logo": "http://node-js-sample.herokuapp.com/node.svg",
"keywords": ["node", "express", "twilio"],
"image": "heroku/nodejs",
"repository": "https://github.com/nash-md/twilio-contact-center",
"addons": ["heroku-postgresql:hobby-dev"],
"success_url": "/setup",
"env": {
"TWILIO_ACCOUNT_SID": {
"description": "Your Twilio accountSid",
"value": "accountSid"
},
"TWILIO_AUTH_TOKEN": {
"description": "Your Twilio authToken",
"value": "authToken"
},
"TWILIO_WORKSPACE_SID": {
"description": "A Workspace is a container for your Tasks, Workers, TaskQueues. You can create it here: https://www.twilio.com/console/taskrouter/workspaces",
"value": "workspaceSid"
},
"TWILIO_CHAT_SERVICE_SID": {
"description": "A service instance where all the chat data is stored and scoped. You can create it here: https://www.twilio.com/console/chat/services",
"value": "chatServiceSid"
},
"TWILIO_API_KEY_SID": {
"description": "API Keys are revokable credentials for the Twilio API. You can create it here: https://www.twilio.com/console/dev-tools/api-keys",
"value": "apiKeySid"
},
"TWILIO_API_KEY_SECRET": {
"description": "API Keys are revokable credentials for the Twilio API.",
"value": "apiKeySecret"
}
}
}