1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-07-01 00:34:55 +02:00

update errbot

This commit is contained in:
kev
2024-05-14 17:22:33 +08:00
parent 7d225a8f8e
commit 2c73b5e086
6 changed files with 30 additions and 88 deletions

View File

@ -5,7 +5,7 @@ import logging
# the options in the more complete config-template.py from here:
# https://raw.githubusercontent.com/errbotio/errbot/master/errbot/config-template.py
BACKEND = 'Slack'
BACKEND = 'SlackV3'
BOT_IDENTITY = {
'token': 'xoxb-xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx'
@ -13,10 +13,11 @@ BOT_IDENTITY = {
CHATROOM_FN = 'Errbot'
BOT_DATA_DIR = '/home/errbot/data'
BOT_EXTRA_PLUGIN_DIR = '/home/errbot/plugins'
BOT_DATA_DIR = '/opt/errbot/data'
BOT_EXTRA_BACKEND_DIR = '/opt/errbot/backend'
BOT_EXTRA_PLUGIN_DIR = '/opt/errbot/plugins'
BOT_LOG_FILE = '/home/errbot/errbot.log'
BOT_LOG_FILE = '/opt/errbot/errbot.log'
BOT_LOG_LEVEL = logging.DEBUG
BOT_ADMINS = ('@master', )