-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.1 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.1 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
37
38
39
40
41
42
43
44
45
46
{
"name": "Flowr",
"description": "Connect RingCentral to Internet services",
"repository": "https://github.com/flowr-app/flowr",
"keywords": [
"elixir",
"phoenix",
"ringcentral",
"flow"
],
"env": {
"SECRET_KEY_BASE": {
"description": "A secret salt for the web application",
"generator": "secret"
},
"POOL_SIZE": {
"description": "Postgres database pool size",
"value": "18"
},
"PHX_HOST": {
"description": "Your website domain, e.g. www.example.com",
"value": "example.com"
},
"RC_CLIENT_ID": {
"description": "RingCentral Developer App's Client ID",
"value": "MY_CLIENT_ID"
},
"RC_CLIENT_SECRET": {
"description": "RingCentral Developer App's Client Secret",
"value": "MY_SECRET"
},
"RC_SERVER_URL": {
"description": "RingCentral API's endpoint",
"value": "https://platform.devtest.ringcentral.com"
}
},
"scripts": {
"postdeploy": "/app/bin/flowr eval 'Flowr.Release.migrate'"
},
"stack": "container",
"addons": [
{
"plan": "heroku-postgresql"
}
]
}