This repository was archived by the owner on Sep 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
50 lines (50 loc) · 1.47 KB
/
Copy pathapp.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
41
42
43
44
45
46
47
48
49
50
{
"name": "TaskRouter Event Summarizer",
"description": "An application to recieve Twilio TaskRouter event callbacks and summarize them into distinct records of what happened during that task.",
"repository": "https://github.com/johnfischelli/taskrouter-event-summarizer",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": ["node", "express", "twilio", "taskrouter"],
"addons": [
{
"plan": "heroku-redis:premium-0"
},
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "11"
}
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"TR_WORKSPACE_SID": {
"description": "TaskRouter Workspace Sid",
"value": "CHANGEME",
"required": true
},
"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_CHAT_SERVICE_SID": {
"description": "The chat service sid that ships with Flex. This is so we can retrieve chat transcripts when chat tasks finish.",
"value": "CHANGEME",
"required": true
},
"TWILIO_SYNC_SERVICE_SID": {
"description": "The sync service sid that ships with Flex. This is how we push data to realtime dashboards.",
"value": "CHANGEME",
"required": true
}
}
}