-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
40 lines (40 loc) · 1.33 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
{
"name": "SMS Translation Demo App",
"description": "Example using Google Cloud Translation API to translate SMS messages.",
"keywords": [
"translation",
"sms",
"nodejs",
"Google Cloud Translation",
"nexmo"
],
"website": "https://developer.nexmo.com/",
"repository": "https://github.com/nexmo-community/sms-translation-demo-app",
"env": {
"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
},
"GOOGLE_PROJECT_ID": {
"description": "The project_id property from your google_creds.json file. Make sure to copy and paste everything here.",
"value": "project_id",
"required": true
},
"REACT_APP_PHONE_NUMBER": {
"description": "The Nexmo phone number to display on the screen.",
"value": "",
"required": true
},
"REACT_APP_COUNTRY_CODE": {
"description": "The Nexmo phone number country code for proper formatting.",
"value": "US",
"required": true
}
}
}