-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.json
50 lines (50 loc) · 1010 Bytes
/
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
{
"name": "Walkiebot",
"description": "Walkiebot lets you prototype slack chatbots and messages",
"repository": "https://github.com/FoundersAS/walkiebot",
"keywords": ["node", "react", "hapijs", "slack", "prototyping", "chatbot"],
"scripts": {
},
"env": {
"HEROKU_APP_NAME": {
"required": true,
"description": "The same value as what you put for 'App name' above"
},
"NODE_ENV": {
"required": true,
"value": "production"
},
"NPM_CONFIG_PRODUCTION": {
"required": true,
"value": "false"
},
"JWT_PUBLIC": {
"required": false
},
"JWT_SECRET": {
"required": false
},
"SLACK_CLIENT_ID": {
"required": false
},
"SLACK_CLIENT_SECRET": {
"required": false
},
"SLACK_LOGIN_REDIRECT_URL": {
"required": false
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"mongolab"
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}