-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
41 lines (41 loc) · 1.08 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
41
{
"name": "Twilio Event Streams - Reporting Example",
"description": "A node express app that demonstrates processing of event streams data that is then used in an attempt to mirror flex insights reporting",
"repository": "",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": [
"node",
"express",
"twilio",
"event streams",
"flex insights"
],
"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 - used to validate incoming requests",
"value": "CHANGEME",
"required": true
},
"LOCALE": {
"description": "Locale as setup in flex insights eg en-US",
"value": "CHANGEME",
"required": true
},
"TIMEZONE": {
"description": "Timezone of flex insights eg \"UTC\" or \"America/New_York\"",
"value": "CHANGEME",
"required": true
}
}
}