Added the irclog django project
[pyIRCbot.git] / configuration.py
blob676043521236b9618eeeb654790be9fafc62d2d9
1 import os.path
3 # where the plugins are..
4 PLUGIN_PATH = os.path.join(os.path.dirname(__file__), "plugins")
5 LIBS_PATH = os.path.join(os.path.dirname(__file__), "libs")
7 DEBUG = True
8 RELOAD_PLUGINS = ":reloadplug"
10 CONNECT_CHANNEL = "#testme"
11 CONNECT_HOST = "irc.freenode.net"
13 IRC_NAME = "pyIRCbot"
14 IRC_IDENT = "pyIRCbot_test"
15 IRC_REALNAME = "John Smith"
16 IRC_PASSWORD = "secretpassword"