"Deploying multiple bots" section: - Simplified the `botserverrc` description, and removed 2 redundant code blocks. - Added the `bot-config-file` option to the `botserverrc` section example, with a short description. - Edited the previously vague instruction to download the `botserverrc`. - Fixed the incomplete command to run Botserver. - Updated the download instructions to link to the Personal Bots tab directly. - Added the bot-config-file setting to the botserverrc example, with a tip on its usage. "Create a bot" section: - Added a separate section with an instruction block for creating outgoing webhook bots. - Added instructions similar to `/help/add-a-bot-or-integration`, but avoided linking directly to the help doc to avoid too many link jumps. "How Botserver works" section: - Replaced the confusing Botserver example URL with a description. - Removed the example of the normal functioning of bot code. Co-authored-by: Lauryn Menard <lauryn@zulip.com> Co-authored-by: mpagler <167506943+mpagler@users.noreply.github.com>
8.1 KiB
Deploying bots in production
Usually, work on a bot starts on a laptop. At some point, you'll want to deploy your bot in a production environment, so that it'll stay up regardless of what's happening with your laptop. There are several options for doing so:
- The simplest is running
zulip-run-bot
inside ascreen
session on a server. This works, but if your server reboots, you'll need to manually restart it, so we don't recommend it. - Using
supervisord
or a similar tool for managing a production process withzulip-run-bot
. This consumes a bit of resources (since you need a persistent process running), but otherwise works great. - Using the Zulip Botserver, which is a simple Flask server for running a bot in production, and connecting that to Zulip's outgoing webhooks feature. This can be deployed in environments like Heroku's free tier without running a persistent process.
Zulip Botserver
The Zulip Botserver is for people who want to
- run bots in production.
- run multiple bots at once.
The Zulip Botserver is a Python (Flask) server that implements Zulip's outgoing webhooks API. You can of course write your own servers using the outgoing webhooks API, but the Botserver is designed to make it easy for a novice Python programmer to write a new bot and deploy it in production.
How Botserver works
Zulip Botserver starts a web server that listens to incoming messages from your main Zulip server. The sequence of events in a successful Botserver interaction are:
-
Your bot user is mentioned or receives a direct message:
@**My Bot User** hello world
-
The Zulip server sends a POST request to your Botserver endpoint URL:
{ "message":{ "content":"@**My Bot User** hello world", }, "bot_email":"myuserbot-bot@example.com", "trigger":"mention", "token":"XXXX" }
This URL is configured in the Zulip web-app in your Bot User's settings.
-
The Botserver searches for a bot to handle the message, and executes your bot's
handle_message
code.
Your bot's code should work just like it does with zulip-run-bot
.
Installing the Zulip Botserver
Install the zulip_botserver
package:
pip3 install zulip_botserver
Create a bot in your Zulip organization
{start_tabs}
-
Navigate to the Bots tab of the Personal settings menu, and click Add a new bot.
-
Set the Bot type to Outgoing webhook.
-
Set the endpoint URL to
https://<host>:<port>
wherehost
is the hostname of the server you'll be running the Botserver on, andport
is the port number. The default port is5002
. -
Click Create bot. You should see the new bot user in the Active bots panel.
{end_tabs}
Running a bot using the Zulip Botserver
{start_tabs}
-
Create your bot in your Zulip organization.
-
Download the
zuliprc
file for the bot created above from the Bots tab of the Personal settings menu, by clicking the download () icon under the bot's name. -
Run the Botserver, where
helloworld
is the name of the bot you want to run:zulip-botserver --config-file <path_to_zuliprc> --bot-name=helloworld
You can specify the port number and various other options; run
zulip-botserver --help
to see how to do this.
{end_tabs}
Congrats, everything is set up! Test your Botserver like you would test a normal bot.
Running multiple bots using the Zulip Botserver
The Zulip Botserver also supports running multiple bots from a single Botserver process.
{start_tabs}
-
Create your bots in your Zulip organization.
-
Download the
botserverrc
file from the Bots tab of the Personal settings menu, using the Download config of all active outgoing webhook bots in Zulip Botserver format option. -
Open the
botserverrc
. It should contain one or more sections that look like this:[helloworld] email=foo-bot@hostname key=dOHHlyqgpt5g0tVuVl6NHxDLlc9eFRX4 site=http://hostname token=aQVQmSd6j6IHphJ9m1jhgHdbnhl5ZcsY bot-config-file=~/path/to/helloworld.conf
Each section contains the configuration for an outgoing webhook bot.
-
For each bot, enter the name of the bot you want to run in the square brackets
[]
, e.g., the above example applies to thehelloworld
bot. To run an external bot, enter the path to the bot's python file instead, e.g.,[~/Documents/my_bot_script.py]
.!!! tip ""
The `bot-config-file` setting is needed only for bots that use a config file.
-
Run the Zulip Botserver by passing the
botserverrc
to it.zulip-botserver --config-file <path-to-botserverrc> --hostname <address> --port <port>
If omitted,
hostname
defaults to127.0.0.1
andport
to5002
.
{end_tabs}
Running Zulip Botserver with supervisord
supervisord is a popular tool for running services in production. It helps ensure the service starts on boot, manages log files, restarts the service if it crashes, etc. This section documents how to run the Zulip Botserver using supervisord.
Running the Zulip Botserver with supervisord works almost like running it manually.
{start_tabs}
-
Install supervisord via your package manager; e.g., on Debian/Ubuntu:
sudo apt-get install supervisor
-
Configure supervisord. supervisord stores its configuration in
/etc/supervisor/conf.d
.-
Do one of the following:
-
Download the sample config file and store it in
/etc/supervisor/conf.d/zulip-botserver.conf
. -
Copy the following section into your existing supervisord config file.
[program:zulip-botserver] command=zulip-botserver --config-file=<path/to/your/botserverrc> --hostname <address> --port <port> startsecs=3 stdout_logfile=/var/log/zulip-botserver.log ; all output of your Botserver will be logged here redirect_stderr=true
-
-
Edit the
<>
sections according to your preferences.
-
-
Update supervisord to read the configuration file:
supervisorctl reread supervisorctl update
(or you can use
/etc/init.d/supervisord restart
, but this is less disruptive if you're using supervisord for other services as well). -
Test if your setup is successful:
supervisorctl status
The output should include a line similar to this:
zulip-botserver RUNNING pid 28154, uptime 0:00:27
The standard output of the Botserver will be logged to the path in your supervisord configuration.
{end_tabs}
If you are hosting the Botserver yourself (as opposed to using a
hosting service that provides SSL), we recommend securing your
Botserver with SSL using an nginx
or Apache
reverse proxy and
Certbot.
Troubleshooting
-
Make sure the API key you're using is for an outgoing webhook bot and you've correctly configured the URL for your Botserver.
-
Your Botserver needs to be accessible from your Zulip server over HTTP(S). Make sure any firewall allows the connection. We recommend using zulip-run-bot instead for development/testing on a laptop or other non-server system. If your Zulip server is self-hosted, you can test by running
curl http://zulipbotserver.example.com:5002
from your Zulip server; the output should be:$ curl http://zulipbotserver.example.com:5002/ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <title>405 Method Not Allowed</title> <h1>Method Not Allowed</h1> <p>The method is not allowed for the requested URL.</p>