docs/etc_defaults_fixbot-nexus
changeset 27 bce1f781f127
child 28 91800c6af63b
equal deleted inserted replaced
26:a7f74dd6d4e5 27:bce1f781f127
       
     1 
       
     2 # what the CWD should be
       
     3 RUN_DIR=/home/terom/projects/FixBot
       
     4 
       
     5 # what user to run as
       
     6 RUN_UID=fixbot-dev
       
     7 
       
     8 # logfile to use
       
     9 LOG_FILE=$RUN_DIR/logs/nexus.log
       
    10 
       
    11 # twistd options
       
    12 TWISTD_ARGS=" \
       
    13     --uid=$RUN_UID  \
       
    14     --gid=nogroup   \
       
    15     --rundir=$RUN_DIR   \
       
    16     --logfile=$LOG_FILE "
       
    17 
       
    18 # fixbot options
       
    19 FIXBOT_ARGS=" \
       
    20     --irc-nickname=FixBotDev    \
       
    21     --irc-channel=#fixme-test   \
       
    22     --api-port=34889    "
       
    23 
       
    24 # plugins/moduels are loaded from RUN_DIR
       
    25 export "PYTHONPATH=$RUN_DIR"
       
    26