dustbot/cfg.toml

44 lines
730 B
TOML

##
## its a config file!
##
##
## bot's user settings
##
[user]
# nick of owner, used as a dumb-simple "auth" for the administrative commands
owner = "slipyx"
# nick, user, and real name of bot
nick = "dustbot"
user = "dust"
name = "Me Mow"
##
## misc bot settings
##
[bot]
# command prefix
prefix = ";"
# list of module names to import from modules package
# additions are imported on bot reload
modules = ['misc','qdb']
##
## networks/servers config
##
[[server]]
# user-friendly name used in logging output
name = "Tilde"
# host and port of server to connect to
host = "irc.tilde.chat"
port = 6697
# optional list of channels to join upon connecting
channels = ["#bots"]
# add more servers using [[server]] like above