This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
app.json
112 lines (112 loc) · 3.18 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "Matterbridge-Heroku",
"description": "Deploy Matterbridge to Heroku",
"repository": "https://github.com/cadecairos/matterbridge-heroku",
"keywords": ["mattermost", "matterbridge", "IRC"],
"success_url": "/",
"buildpacks": [
{
"url": "http://github.com/cadecairos/matterbridge-heroku.git#master"
}
],
"env": {
"MATTERBRIDGE_VERSION": {
"description": "Version of matterbridge to download and deploy",
"value": "0.10.2"
},
"IRC_SERVER": {
"description": "The IRC server (including port) to connect to",
"value": "irc.mozilla.org:6697"
},
"IRC_NICK": {
"description": "The IRC nick of the bot",
"value": "matterbot"
},
"IRC_USE_TLS": {
"description": "Connect to IRC with TLS",
"value": "true"
},
"IRC_USE_SASL": {
"description": "Authenticate using SASL",
"value": "true"
},
"IRC_SKIP_TLS_VERIFY": {
"description": "Don't verify TLS certificate from server",
"value": "false"
},
"IRC_NICKSERV_NICK": {
"description": "NickServ account name",
"value": "matterbot"
},
"IRC_NICKSERV_PASSWORD": {
"description": "NickServ account pasword",
"value": ""
},
"IRC_REMOTE_NICK_FORMAT": {
"description": "The IRC nick of the bot",
"value": "[{PROTOCOL}] <{NICK}> "
},
"IRC_IGNORE_NICKS": {
"description": "space separated list of nicks to ignore when bridging irc messages to mattermost",
"value": "",
"required": false
},
"MATTERMOST_SERVER": {
"description": "The URL of the mattermost server",
"value": ""
},
"MATTERMOST_TEAM": {
"description": "Mattermost team to connect to",
"value": ""
},
"MATTERMOST_BOT_LOGIN": {
"description": "Mattermost bot username",
"value": ""
},
"MATTERMOST_BOT_PASSWORD": {
"description": "Mattermost Bot password",
"value": ""
},
"MATTERMOST_NO_TLS": {
"description": "Use http to connect to Mattermost",
"value": "false"
},
"MATTERMOST_SKIP_TLS_VERIFY": {
"description": "Don't verify the mattermost server's certificate",
"value": "false"
},
"MATTERMOST_SHOW_JOIN_PART": {
"description": "Show join/part messages",
"value": "false"
},
"MATTERMOST_PREFIX_MSG_WITH_NICK": {
"description": "Prefix the messages with the remote users nick",
"value": "false"
},
"MATTERMOST_REMOTE_NICK_FORMAT": {
"description": "Format string for messages",
"value": "[{PROTOCOL}] <{NICK}> "
},
"MATTERMOST_NICK_FORMATTER": {
"description": "How to display nicklist - 'table' or 'plain'",
"value": "plain"
},
"MATTERMOST_NICKS_PER_ROW": {
"description": "number of nicks to show per row",
"value": "4"
},
"MATTERMOST_IGNORE_NICKS": {
"description": "Space separated list of nicks whose messages should not be bridged",
"value": "",
"required": false
},
"IRC_CHANNEL": {
"description": "IRC channel to bridge",
"value": ""
},
"MATTERMOST_CHANNEL": {
"description": "Mattermost channel to bridge",
"value": ""
}
}
}