forked from irccloud/irccat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
irccat.json
46 lines (46 loc) · 922 Bytes
/
irccat.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
{
"tcp": {
"listen": ":12345"
},
"http": {
"listen": ":8045",
"tls": false,
"tls_key": "",
"tls_cert": "",
"listeners": {
"generic": {
"secret": "",
"strict": false
},
"grafana": "#channel",
"github": {
"secret": "my_secret",
"default_channel": "#irccat-dev",
"repositories": {
"irccat": "#irccat-dev"
}
}
}
},
"irc": {
"server": "irc.example.com:6697",
"tls": true,
"tls_skip_verify": false,
"tls_client_cert": "",
"tls_client_key": "",
"nick": "irccat",
"realname": "IRCCat",
"server_pass": "",
"identify_pass": "",
"sasl_external": false,
"sasl_login": "",
"sasl_pass": "",
"channels": ["#channel"],
"keys": {"#channel": "join_key"}
},
"commands": {
"auth_channel": "#channel",
"handler": "./examples/command_handler.py",
"max_response_lines": 15
}
}