-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
57 lines (57 loc) · 1.83 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
55
56
57
{
"name": "RingCentral Add-In Framework Template",
"description" : "A test app for RingCentral Add-In App",
"repository": "",
"keywords": ["node", "express", "ringcentral add-in"],
"addons": [
{
"plan": "heroku-postgresql"
}
],
"env": {
"APP_SERVER_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"APP_SERVER": {
"description": "Your heroku app URI.",
"value": "https://your_app_name.herokuapp.com"
},
"DATABASE_CONNECTION_URI": {
"description": "Database connection uri",
"value": "db://"
},
"ASSETS_PATH": {
"description": "Client app asset path",
"value": "https://assetpath"
},
"CLIENT_ID": {
"description": "3rd party platform app client id",
"value": "client_id"
},
"CLIENT_SECRET": {
"description": "3rd party platform app client secret",
"value": "client_secret"
},
"ACCESS_TOKEN_URI": {
"description": "3rd party platform access token uri",
"value": "https://platform.com/oauth/access_token"
},
"AUTHORIZATION_URI": {
"description": "3rd party platform authorization uri",
"value": "https://platform.com/oauth/authorize"
},
"SCOPES": {
"description": "3rd party platform authorization scopes(default separated by comma)",
"value": "scope1,scope2"
},
"SCOPES_SEPARATOR": {
"description": "3rd party platform authorization scopes separator",
"value": ","
},
"IM_SHARED_SECRET": {
"description": "RingCentral app interactive message shared secret",
"value": "shared_secret"
}
}
}