forked from IcEBnd/pyirkbot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.sample.py
More file actions
25 lines (20 loc) · 790 Bytes
/
settings.sample.py
File metadata and controls
25 lines (20 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from autoreloader.autoreloader import AutoReloader # Do not remove
class Settings(AutoReloader): # these two lines
# Sample config, all options are mandatory
networks = {
"example": {"server_address": "irc.example.com",
"server_port": 6667,
"nick": "CHANGEME",
"username": "CHANGEME",
"realname": "CHANGEME",
"channels": [["#CHANGEME"], ["#channel", "password"], ],
},
}
admin_network = "example"
admin_channel = "#example"
admin_adminnicks = ["CHANGEME"]
trigger = "."
# Plugins that will be loaded on startup from plugins/
# Use this directory to view all available Plugins and to add your own.
plugins = ['plugins', 'command_catcher', 'commands', 'standard',
'reloader', 'options', 'utility']