forked from ohbarye/review-waiting-list-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
31 lines (31 loc) · 787 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
{
"name": "review-waiting-list-bot",
"description": "Slack bot encouraging to review pull requests",
"keywords": [
"Slack",
"Bot",
"Review",
"GitHub"
],
"website": "https://github.com/ohbarye/review-waiting-list-bot",
"repository": "https://github.com/ohbarye/review-waiting-list-bot",
"env": {
"SLACK_BOT_TOKEN": {
"description": "Slack bot API token: https://my.slack.com/services/new/bot"
},
"GITHUB_AUTH_TOKEN": {
"description": "GitHub bot API token: https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/"
}
},
"formation": {
"web": {
"quantity": 0,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/nodejs"
}