1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/errbot/data/config.py

25 lines
626 B
Python
Raw Normal View History

2017-01-21 12:57:35 +00:00
import logging
# This is a minimal configuration to get you started with the Text mode.
# If you want to connect Errbot to chat services, checkout
# the options in the more complete config-template.py from here:
# https://raw.githubusercontent.com/errbotio/errbot/master/errbot/config-template.py
BACKEND = 'Slack'
BOT_IDENTITY = {
'token': 'xoxb-xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx'
}
CHATROOM_FN = 'Errbot'
2017-01-21 13:57:13 +00:00
BOT_DATA_DIR = '/home/errbot/data'
2017-01-21 12:57:35 +00:00
BOT_EXTRA_PLUGIN_DIR = '/home/errbot/plugins'
2017-01-21 13:57:13 +00:00
BOT_LOG_FILE = '/home/errbot/errbot.log'
2017-01-21 12:57:35 +00:00
BOT_LOG_LEVEL = logging.DEBUG
2017-01-21 13:57:13 +00:00
BOT_ADMINS = ('@master', )
2017-01-22 14:21:00 +00:00
AUTOINSTALL_DEPS = True