-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
26 lines (26 loc) · 829 Bytes
/
app.json
File metadata and controls
26 lines (26 loc) · 829 Bytes
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
{
"name": "Vonage Node Skeleton App",
"description": "Sample Node.js Application to test Vonage environment setup",
"repository": "https://github.com/Nexmo/node-skeleton-app",
"keywords": [
"express",
"node",
"heroku",
"vonage"
],
"image": "heroku/node",
"env": {
"VONAGE_API_KEY": {
"description": "Find your account API key and secret on the dashboard https://dashboard.nexmo.com"
},
"VONAGE_API_SECRET": {
"description": "Find your account API key and secret on the dashboard https://dashboard.nexmo.com"
},
"FROM_NUMBER": {
"description": "Phone number to send message from."
},
"TO_NUMBER": {
"description": "Phone number to send message to."
}
}
}