2019-06-07 14:50:35 +02:00
|
|
|
Run your favorite chatbot in Zulip!
|
2017-10-26 23:51:26 +02:00
|
|
|
|
2020-03-27 01:32:21 +01:00
|
|
|
0. [Install errbot](https://errbot.readthedocs.io/en/latest/user_guide/setup.html)
|
2017-10-26 23:51:26 +02:00
|
|
|
and follow to instructions to setup a `config.py`.
|
|
|
|
|
|
|
|
0. Check our our [Errbot integration package for Zulip](https://github.com/zulip/errbot-backend-zulip)
|
|
|
|
Clone this repository somewhere convenient.
|
|
|
|
|
|
|
|
0. Install the requirements listed in `errbot-backend-zulip/requirements.txt`.
|
|
|
|
|
|
|
|
0. Next, on your {{ settings_html|safe }}, [create a bot](/help/add-a-bot-or-integration) for
|
|
|
|
{{ integration_display_name }}. Make sure that you select **Generic bot** as the **Bot type**.
|
|
|
|
|
|
|
|
0. Download your Zulip bot's `zuliprc` config file. You will need its content for the next step.
|
|
|
|
|
|
|
|
0. Edit your ErrBot's `config.py`. Use the following template for a minimal configuration:
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
BACKEND = 'Zulip'
|
|
|
|
|
|
|
|
BOT_EXTRA_BACKEND_DIR = r'<path/to/errbot-backend-zulip>'
|
|
|
|
BOT_DATA_DIR = r'<path/to/your/errbot/data/directory>'
|
|
|
|
BOT_EXTRA_PLUGIN_DIR = r'<path/to/your/errbot/plugin/directory>'
|
|
|
|
|
|
|
|
BOT_LOG_FILE = r'<path/to/your/errbot/logfile.log>'
|
|
|
|
BOT_LOG_LEVEL = logging.INFO
|
|
|
|
|
|
|
|
BOT_IDENTITY = { # Fill this with the corresponding values in your bot's `.zuliprc`
|
|
|
|
'email': '<err-bot@your.zulip.server>',
|
|
|
|
'key': '<abcdefghijklmnopqrstuvwxyz123456>',
|
|
|
|
'site': '<http://your.zulip.server>'
|
|
|
|
}
|
|
|
|
BOT_ADMINS = ('<your@email.address',)
|
|
|
|
CHATROOM_PRESENCE = ()
|
2019-11-18 21:14:43 +01:00
|
|
|
BOT_PREFIX = '<@**err-bot**>' # Providing errbot's full name in Zulip lets it respond to @-mentions.
|
2017-10-26 23:51:26 +02:00
|
|
|
|
|
|
|
Sections you need to edit are marked with `<>`.
|
|
|
|
|
2020-03-27 01:32:21 +01:00
|
|
|
7. [Start ErrBot](https://errbot.readthedocs.io/en/latest/user_guide/setup.html#starting-the-daemon).
|
2017-10-26 23:51:26 +02:00
|
|
|
|
|
|
|
{!congrats.md!}
|
|
|
|
|
|
|
|
![](/static/images/integrations/errbot/000.png)
|
|
|
|
|
2019-06-07 14:50:35 +02:00
|
|
|
### Tips
|
2017-10-26 23:51:26 +02:00
|
|
|
|
|
|
|
* Rooms in ErrBot are streams in Zulip.
|