-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
36 lines (36 loc) · 1.31 KB
/
app.json
File metadata and controls
36 lines (36 loc) · 1.31 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
{
"name": "Learning Vonage Video NodeJS",
"description": "An Vonage Video sample app for handling Vonage server-side functionality on a NodeJS server",
"keywords": [
"WebRTC",
"Vonage",
"OpenTok",
"video",
"chat",
"communications"
],
"website": "https://developer.vonage.com",
"repository": "https://github.com/Vonage-Community/sample-video-node-learning_server",
"env": {
"VONAGE_APP_ID": {
"description": "Vonage Application Id: Login to the Vonage Dashboard (https://dashboard.nexmo.com/applications) to get this value.",
"required": true
},
"VONAGE_PRIVATE_KEY64": {
"description": "Your Vonage Private Key as a base64-encoded value ( Linux: cat private.key | base64 -w 0 \n Mac: cat private.key | base64 -b 0 ): Login to the Vonage Dashboard (https://dashboard.nexmo.com/applications) to get this value",
"required": true
},
"API_KEY": {
"description": "Your Vonage API Key. Required to use SIP Connectivity.",
"required": false
},
"API_SECRET": {
"description": "Your Vonage API Secret. Required to use SIP Connectivity.",
"required": false
},
"CONFERENCE_NUMBER": {
"description": "The phone number linked to your Vonage Application. Required for SIP Connectivity.",
"required": false
}
}
}