-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
48 lines (48 loc) · 1.2 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
{
"name": "goldenboy-bot",
"description": "Code Hangar's goldenboy",
"repository": "https://github.com/codehangar/goldenboy-bot",
"logo": "http://goldenboy-bot.herokuapp.com/goldenboy.jpg",
"keywords": [
"node",
"slack",
"chatbot",
"express",
"static",
"rethinkdb"
],
"success_url": "/",
"env": {
"BOT_KEY": {
"description": "A secret key used by Slack to authenticate the slack bot"
},
"TRELLO_KEY": {
"description": "API Key for Trello Integration",
"required": false
},
"TRELLO_TOKEN": {
"description": "API Token for Trello Integration",
"required": false
},
"TOGGL_TOKEN": {
"description": "API Token for Toggl Integration",
"required": false
},
"TOGGL_USER_AGENT": {
"description": "API User for Toggl Integration (your account's email)",
"required": false
},
"TOGGL_WORKSPACE": {
"description": "Toggl Workspace ID",
"required": false
},
"RETHINK_HOST": {
"description": "Hostname or IP of your RethinkDB instance",
"required": false
},
"RETHINK_PORT": {
"description": "Port of your RethinkDB instance",
"required": false
}
}
}