-
Notifications
You must be signed in to change notification settings - Fork 20
/
app.json
54 lines (54 loc) · 1.65 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
48
49
50
51
52
53
54
{
"name": "Nexmo + Google Cloud Speech",
"description": "Demo applicaiton of using Google Cloud Speech API with Nexmo Websockets to perform realtime transcription in multiple languages.",
"repository": "https://github.com/nexmo-community/voice-google-speechtotext",
"keywords": ["node", "nexmo", "google cloud", "gcp", "text to speech"],
"env": {
"NAME": {
"description": "The Heroku app name."
},
"CREATE_NEXMO_APP": {
"description": "Should the application automatically create a Nexmo application and purchase a new phone number",
"value": "yes"
},
"API_KEY": {
"description": "Your Nexmo API Key",
"value": "",
"required" : true
},
"API_SECRET": {
"description": "Your Nexmo API Secret",
"value": "",
"required" : true
},
"CC": {
"description": "The ISO 3361 Country Code where you want the number to be purchased eg, US, GB, ES etc.",
"value": "US",
"required" : true
},
"GOOGLE_CLIENT_EMAIL": {
"description": "The client_email property from your google_creds.json file.",
"value": "[email protected]",
"required" : true
},
"GOOGLE_PRIVATE_KEY": {
"description": "The private_key property from your google_creds.json file. Make sure to copy and paste everything here.",
"value": "-----BEGIN PRIVATE KEY-----",
"required" : true
}
},
"buildpacks": [
{
"url": "https://github.com/nexmo-community/heroku-buildpack-voice"
},
{
"url": "heroku/node"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}