log plugin
[arenopage.git] / config.py
blobd0e8bae8b7c48179a9f949c35c79fa54b3555af0
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3 import sys
4 """Configuration file for arenopage bot"""
6 # folders configuration
7 folders = { 'plugins' : './plugins', 'logs' : './logs' }
8 if not folders['plugins'] in sys.path: sys.path.append(folders['plugins'])
9 # configuration of connecting
10 connection_data = {
11 'host' : 'irc.freenode.net',
12 'port' : 6667,
13 'nick' : 'arenopage',
14 'ident' : 'arenopage',
15 'name' : 'owner: pagenoare',
16 'channels' : ['#webtips-pl'],
17 'password' : 'passwd'
20 # how plugins load on start?
21 plugins_auto_load = ['log']