-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
51 lines (51 loc) · 1.03 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
{
"name": "nt-secretmessage",
"scripts": {},
"env": {
"APP_URL": {
"required": true,
"description": "Used by the app for keeping itself awake"
},
"CRYPTO_KEY": {
"required": true,
"description": "legacy crypto key from node.js version of app"
},
"GIN_MODE": {
"required": false,
"description": "GIN release mode"
},
"DATABASE_URL": {
"required": true,
"description": "Database connection uri"
},
"SLACK_CALLBACK_URL": {
"required": true,
"description": "OAuth redirect URI"
},
"SLACK_CLIENT_ID": {
"required": true,
"description": "OAuth client ID"
},
"SLACK_CLIENT_SECRET": {
"required": true,
"description": "OAuth client secret"
},
"SLACK_SIGNING_SECRET": {
"required": true,
"description": "Slack signing secret"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/go"
}
]
}