-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
44 lines (44 loc) · 1.06 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
{
"name": "Facebot",
"description": "Slack bot for facebook messenger integration",
"logo": "https://raw.githubusercontent.com/Weetbix/facebot/master/logo.png",
"keywords": [
"node",
"nodejs",
"facebook",
"slack",
"messenger",
"integration"
],
"repository": "https://github.com/Weetbix/facebot",
"website": "https://github.com/Weetbix/facebot",
"env": {
"BOT_API_KEY": {
"description": "Your slack bots API key",
"value": ""
},
"BOT_NAME": {
"description": "The username of you slackbot",
"value": ""
},
"FACEBOOK_EMAIL": {
"description": "Your facebook email address",
"value": ""
},
"FACEBOOK_PASSWORD": {
"description": "Your facebook password",
"value": ""
},
"AUTHORISED_USERNAME": {
"description": "Your slack username",
"value": ""
}
},
"addons": [
"heroku-postgresql:hobby-dev"
],
"formation": [
{ "process": "web", "quantity": 0},
{ "process": "worker", "quantity": 1}
]
}