-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
59 lines (59 loc) · 1.98 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
58
59
{
"name": "Glipped",
"description": "Easy way for developers to add Guest Users into Public Groups",
"repository": "https://github.com/anilkumarbp/Glipped.git",
"keywords": [
"RingCentral",
"ringcentral",
"glip",
"heroku"
],
"scripts": {
"postdeploy": "npm install"
},
"formation": [
{
"process": "web",
"quantity": 1
}
],
"website": "https://developers.ringcentral.com",
"env": {
"RC_CLIENT_ID": {
"description": "Your RingCentral Application Key from the Developer Portal",
"required": true
},
"RC_CLIENT_SECRET": {
"description": "Your RingCentral Application Secret from the Developer Portal",
"required": true
},
"RC_APP_SERVER_URL": {
"description": "Will this be operating with a RingCentral Sandbox or Production account? accepts either: 'sandbox' or 'production'",
"required": true
},
"RC_USERNAME": {
"description": "Your RingCentral Account Username (phone number) for any Glip user that can invite guests to the Glip Team. Expected format: This should be in the E.164 format such as [countryCode][numberWithoutSpecialCharactersParensOrHyphens], example: +16505550123",
"required": true
},
"RC_EXTENSION": {
"description": "Your RingCentral Account User Extension",
"required": true
},
"RC_PASSWORD": {
"description": "Your RingCentral Account User Password",
"required": true
},
"APP_LOGO": {
"description": "Logo you would want to use",
"required": false
},
"GLIP_GROUP_NAME": {
"description": "Name of the Public Glip Group",
"required": false
},
"GLIP_GROUP_ID": {
"description": "GroupId of the Group",
"required": true
}
}
}