forked from hipchat/triatomic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
69 lines (69 loc) · 2.38 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "Hubot for HipChat",
"description": "A helpful bot for your HipChat group",
"repository": "https://github.com/hipchat/triatomic",
"logo": "https://raw.githubusercontent.com/hipchat/triatomic/master/logo.png",
"keywords": [
"hubot",
"hipchat",
"bot",
"chat",
"heroku"
],
"addons": [
"redistogo"
],
"env": {
"HUBOT_HIPCHAT_JID": {
"description": "Your bot's Jabber ID which can be found in the XMPP/Jabber settings for your bot's HipChat user account; e.g. [email protected].",
"required": true
},
"HUBOT_HIPCHAT_PASSWORD": {
"description": "The password for your bot's HipChat user account.",
"required": true
},
"HUBOT_HIPCHAT_ROOMS": {
"description": "A comma-separated list of room JIDs that you want your bot to join.",
"required": false
},
"HUBOT_HIPCHAT_ROOMS_BLACKLIST": {
"description": "A comma-separated list of room JIDs that you DON'T want your bot to join.",
"required": false
},
"HUBOT_HIPCHAT_JOIN_ROOMS_ON_INVITE": {
"description": "Setting this to `false` will prevent the HipChat adapter from auto-joining rooms when invited.",
"required": false
},
"HUBOT_HIPCHAT_HOST": {
"description": "Use this to connect to a HipChat host other than `hipchat.com`.",
"required": false
},
"HUBOT_HIPCHAT_XMPP_DOMAIN": {
"description": "Set to `btf.hipchat.com` if using a self-hosted HipChat Server.",
"required": false
},
"HUBOT_HIPCHAT_RECONNECT": {
"description": "Set to `false` to prevent the HipChat adapter from auto-reconnecting if it detects a server error or disconnection.",
"required": false
},
"HUBOT_HIPCHAT_JOIN_PUBLIC_ROOMS": {
"value": "",
"description": "Set to `false` to prevent the bot from joining guest-accessible rooms.",
"required": false
},
"HUBOT_LOG_LEVEL": {
"description": "Set to `debug` to enable detailed debug logging.",
"required": false
},
"HUBOT_HEROKU_KEEPALIVE_URL": {
"value": "https://YOUR_BOT_APP.herokuapp.com",
"description": "Set to use the subdomain of this bot to keep it awake",
"required": true
},
"BUILDPACK_URL": {
"value": "https://github.com/heroku/heroku-buildpack-nodejs",
"description": "Only change this if you are sure you need to.",
"required": true
}
}
}