comparison README @ 8:1463f4620fca

Added some help in README Signed-off-by: Charly COSTE <changaco@changaco.net>
author Charly COSTE <changaco@changaco.net>
date Sun, 16 Aug 2009 22:04:06 +0200
parents 7d1745ca1dc2
children 1a1f2a0d35c7
comparison
equal deleted inserted replaced
7:9631f8d9895d 8:1463f4620fca
12 xib includes its own version of the old irclib.py <http://python-irclib.sourceforge.net/> because this library doesn't correctly handle the different character encodings, I'm sorry about it but I don't have time to contribute to the upstream version right now, I don't know if it still has developers anyway 12 xib includes its own version of the old irclib.py <http://python-irclib.sourceforge.net/> because this library doesn't correctly handle the different character encodings, I'm sorry about it but I don't have time to contribute to the upstream version right now, I don't know if it still has developers anyway
13 13
14 xib depends on: 14 xib depends on:
15 - python 2.6 15 - python 2.6
16 - xmppony 0.1 16 - xmppony 0.1
17
18
19 How to install and run xib bots:
20
21 If you are not installing xib from a package manager I suggest you put the files in /usr/local/share/xib
22 To start xib bots just execute start_bots_from_xml_config.py, this script will search the *current* directory for a file named "config.xml" which must have the same schema as "example_config.xml".
23
24 How to log xib bots output:
25
26 xib does not directly handle logging for now so you have to do it the old school way, for example:
27 mkdir /var/log/xib
28 touch /var/log/xib/1.log
29 cd /usr/local/share/xib && ./start_bots_from_xml_config.py 1>/var/log/xib/log 2>&1 &