-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
53 lines (53 loc) · 1.25 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
{
"name": "retool",
"description": "Retool Heroku",
"keywords": [
"retool"
],
"logo": "https://avatars.githubusercontent.com/u/33817679",
"repository": "https://github.com/tryretool/retool-onpremise",
"stack": "container",
"formation": {
"web": {
"quantity": 1,
"size": "performance-m"
}
},
"env": {
"ENCRYPTION_KEY": {
"description": "A secret key for encrypting secret credentials when connecting Retool to other databases or API endpoints",
"required": true,
"generator": "secret"
},
"JWT_SECRET": {
"description": "A secret key for signing JSON Web Tokens",
"required": true,
"generator": "secret"
},
"LICENSE_KEY": {
"description": "Your Retool license key",
"required": true
},
"NODE_ENV": {
"description": "The environment to run Retool",
"required": true,
"value": "production"
},
"PGSSLMODE": {
"required": true,
"value": "require"
},
"USE_GCM_ENCRYPTION": {
"description": "Set to `true` for authenticated encryption of secrets",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql:standard-0",
"options": {
"version": "11"
}
}
]
}