relay/config.dev.py

37 lines
827 B
Python
Raw Permalink Normal View History

2024-04-04 12:37:10 +00:00
from ircrobots import SASLUserPass
2024-04-06 04:35:20 +00:00
NICKNAME = "hedyrelay-dev"
2022-03-30 01:24:41 +00:00
SERVERS = {
"libera": {
2024-04-04 12:37:10 +00:00
"connection": {
"host": "irc.libera.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
2022-03-30 01:24:41 +00:00
"chans": ["#hedy-dev"],
"hidechan": True,
},
"tilde": {
2024-04-04 12:37:10 +00:00
"connection": {
"host": "irc.tilde.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
2022-03-30 01:24:41 +00:00
"chans": ["##hedy-dev"],
"hidechan": True,
},
2024-04-06 04:13:40 +00:00
"teapot": {
"connection": {
"host": "irc.teapot.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
"chans": ["##hedy-dev"],
"hidechan": True,
},
2022-03-30 01:24:41 +00:00
}
ADMINS = ["hedy"]
NOPING = ["hedy", "jmjl"]
log_file = "devlog.txt"