uberbot/sample_uberbot.toml

23 lines
582 B
TOML
Raw Normal View History

log_level = "debug" # optional, default: info
2022-07-15 10:58:45 -05:00
[irc]
2021-12-28 06:39:30 -06:00
host = "karx.xyz"
port = 6697
2022-07-16 05:21:23 -05:00
tls = true
2021-12-28 06:39:30 -06:00
username = "uberbot"
nickname = "amazingbot" # optional, default: same as username
2021-12-30 17:02:12 -06:00
channels = ["#main", "#no-normies"]
mode = "+B" # optional, default: none
2021-12-28 06:39:30 -06:00
[bot]
db_path = "database.db3" # optional, default: uberbot.db3
history_depth = 5
search_limit = 5 # optional, default: 3
2022-07-24 05:22:00 -05:00
prefixes = ["u!", "yo uberbot "]
[spotify] # optional, spotify module disabled if missing
2022-07-19 08:14:03 -05:00
client_id = ""
client_secret = ""
2022-07-20 16:08:35 -05:00
[web] # optional, web service disabled if missing
listen = "127.0.0.1:8080"