Add config.dev.py

This commit is contained in:
hedy 2022-03-30 09:24:41 +08:00
parent 0aa78488fe
commit c2d6a04c41
Signed by: hedy
GPG Key ID: B51B5A8D1B176372
1 changed files with 31 additions and 0 deletions

31
config.dev.py Normal file
View File

@ -0,0 +1,31 @@
NICKNAME = "hedyrelay"
SERVERS = {
"libera": {
# host port ssl
"connection": ("irc.libera.chat", 6697, True),
"chans": ["#hedy-dev"],
"hidechan": True,
},
"tilde": {
"connection": ("irc.tilde.chat", 6697, True),
"chans": ["##hedy-dev"],
"hidechan": True,
},
"foxies": {
"connection": (
"foxes.are.allowed.org",
6697,
True,
NICKNAME,
NICKNAME,
"tilde.cafe",
),
"chans": ["#hedy-dev"],
"hidechan": True,
},
}
ADMINS = ["hedy"]
NOPING = ["hedy", "jmjl"]