forked from vivekgrover1/slack_devops_chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
22 lines (15 loc) · 751 Bytes
/
config.py
File metadata and controls
22 lines (15 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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' # Errbot will start in text mode (console only mode) and will answer commands from there.
BOT_DATA_DIR = r'/root/errbot/data'
BOT_EXTRA_PLUGIN_DIR = r'/root/errbot/plugins'
BOT_IDENTITY = {
'token': ''
}
BOT_LOG_FILE = r'/root/errbot/errbot.log'
BOT_LOG_LEVEL = logging.ERROR
BOT_ADMINS = ('', ) # !! Don't leave that to "@CHANGE_ME" if you connect your errbot to a chat system !!
CORE_PLUGINS = ('ACLs', 'Help','repomgr')