-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
47 lines (46 loc) · 1.35 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
42
43
44
45
46
47
{
"name": "Answering Machine Detection",
"description": "Detect when a call goes to voicemail",
"repository": "https://github.com/nexmo-community/AnsweringMachineDetection",
"logo": "https://avatars0.githubusercontent.com/u/551057?v=3&s=200",
"env":{
"CREATE_NEXMO_APP": {
"description": "Should the application automatically create a nexmo application and purchase a new phone number",
"value": "yes"
},
"NAME": {
"description": "The Heroku app name, enter it exactly the same as you have above"
},
"API_KEY": {
"description": "Your Nexmo API Key",
"value": "",
"required" : false
},
"API_SECRET": {
"description": "Your Nexmo API Secret",
"value": "",
"required" : false
},
"CC": {
"description": "The ISO 3361 Country Code wheere you want the number to be purcahsed eg, US, GB, ES etc.",
"value": "",
"required" : false
},
"CLOUD_STORAGE_BUCKET": {
"description":"Google Cloud bucket name. Used to save recordings (Optional)",
"required":false
},
"PROJECT_ID": {
"description":"Google Cloud Project ID. Used to save recordings (Optional)",
"required":false
}
},
"buildpacks": [
{
"url": "https://github.com/nexmo-community/heroku-buildpack-voice"
},
{
"url": "heroku/python"
}
]
}