diff --git a/errbot/Dockerfile b/errbot/Dockerfile index 88a9868..e35a67f 100644 --- a/errbot/Dockerfile +++ b/errbot/Dockerfile @@ -8,6 +8,7 @@ MAINTAINER kev RUN set -xe \ && apk add --no-cache ca-certificates \ build-base \ + git \ libffi-dev \ openssl-dev \ python3 \ diff --git a/errbot/README.md b/errbot/README.md index ef4e956..eeac2a4 100644 --- a/errbot/README.md +++ b/errbot/README.md @@ -32,11 +32,22 @@ $ docker-compose up -d master [8:50 PM] !tryme errbot [8:50 PM] It works! -master [8:50 PM] !help -errbot [8:50 PM] All commands ... +master [8:51 PM] !help +errbot [8:51 PM] All commands ... -master [8:55 PM] !uptime -errbot [8:55 PM] I've been up for 6 minutes +master [8:52 PM] !whoami +errbot [8:52 PM] +┏━━━━━━━━━━┳━━━━━━━━━━━━━┓ +┃ key ┃ value ┃ +┡━━━━━━━━━━╇━━━━━━━━━━━━━┩ +│ person │ `@master` │ +├──────────┼─────────────┤ +│ nick │ `master` │ +├──────────┼─────────────┤ +│ fullname │ `Mr Robot` │ +├──────────┼─────────────┤ +│ client │ `XXXXXXXXX` │ +└──────────┴─────────────┘ ``` [1]: http://errbot.io diff --git a/errbot/data/config.py b/errbot/data/config.py index de48e32..c6707b3 100644 --- a/errbot/data/config.py +++ b/errbot/data/config.py @@ -13,10 +13,10 @@ BOT_IDENTITY = { CHATROOM_FN = 'Errbot' -BOT_DATA_DIR = r'/home/errbot/data' +BOT_DATA_DIR = '/home/errbot/data' BOT_EXTRA_PLUGIN_DIR = '/home/errbot/plugins' -BOT_LOG_FILE = r'/home/errbot/errbot.log' +BOT_LOG_FILE = '/home/errbot/errbot.log' BOT_LOG_LEVEL = logging.DEBUG -BOT_ADMINS = ('CHANGE ME', ) +BOT_ADMINS = ('@master', )