2017-01-21 14:57:35 +02: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 15:57:13 +02:00
|
|
|
BOT_DATA_DIR = '/home/errbot/data'
|
2017-01-21 14:57:35 +02:00
|
|
|
BOT_EXTRA_PLUGIN_DIR = '/home/errbot/plugins'
|
|
|
|
|
2017-01-21 15:57:13 +02:00
|
|
|
BOT_LOG_FILE = '/home/errbot/errbot.log'
|
2017-01-21 14:57:35 +02:00
|
|
|
BOT_LOG_LEVEL = logging.DEBUG
|
|
|
|
|
2017-01-21 15:57:13 +02:00
|
|
|
BOT_ADMINS = ('@master', )
|
2017-01-22 16:21:00 +02:00
|
|
|
|
|
|
|
AUTOINSTALL_DEPS = True
|