relay/config.dev.py

37 lines
827 B
Python

from ircrobots import SASLUserPass
NICKNAME = "hedyrelay-dev"
SERVERS = {
"libera": {
"connection": {
"host": "irc.libera.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
"chans": ["#hedy-dev"],
"hidechan": True,
},
"tilde": {
"connection": {
"host": "irc.tilde.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
"chans": ["##hedy-dev"],
"hidechan": True,
},
"teapot": {
"connection": {
"host": "irc.teapot.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
"chans": ["##hedy-dev"],
"hidechan": True,
},
}
ADMINS = ["hedy"]
NOPING = ["hedy", "jmjl"]
log_file = "devlog.txt"