2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-31 01:57:22 +01:00

add errbot

This commit is contained in:
kev
2017-01-21 20:57:35 +08:00
parent 829b53ee8c
commit 19a7b572b7
5 changed files with 106 additions and 0 deletions

22
errbot/data/config.py Normal file
View File

@@ -0,0 +1,22 @@
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'
BOT_DATA_DIR = r'/home/errbot/data'
BOT_EXTRA_PLUGIN_DIR = '/home/errbot/plugins'
BOT_LOG_FILE = r'/home/errbot/errbot.log'
BOT_LOG_LEVEL = logging.DEBUG
BOT_ADMINS = ('CHANGE ME', )