2018-09-11 00:45:03 +02:00
|
|
|
!!! tip ""
|
2018-09-14 22:46:20 +02:00
|
|
|
Note that [Zapier][1] is usually a simpler way to
|
2018-09-11 00:45:03 +02:00
|
|
|
integrate Trello with Zulip.
|
|
|
|
|
2018-12-29 12:42:41 +01:00
|
|
|
Get Zulip notifications from your Trello boards!
|
|
|
|
|
2018-09-11 00:45:03 +02:00
|
|
|
[1]: ./zapier
|
2018-03-29 18:04:18 +02:00
|
|
|
|
|
|
|
1. {!create-stream.md!}
|
|
|
|
|
|
|
|
1. {!create-bot-construct-url-indented.md!}
|
|
|
|
|
2018-09-14 22:46:20 +02:00
|
|
|
1. **Log in to Trello**, and collect the following three items:
|
2018-03-29 18:04:18 +02:00
|
|
|
|
|
|
|
* **Board ID**: Go to your Trello board. The URL should look like
|
|
|
|
`https://trello.com/b/<BOARD_ID>/<BOARD_NAME>`. Note down the
|
|
|
|
`<BOARD_ID>`.
|
|
|
|
|
|
|
|
* **API Key**: Go to <https://trello.com/1/appkey/generate>. Note down the
|
|
|
|
key listed under **Developer API Keys**.
|
|
|
|
|
|
|
|
* **User Token**: Go to <https://trello.com/1/appkey/generate>. Under
|
|
|
|
**Developer API Keys**, click on the **Token** link. Click on **Allow**.
|
|
|
|
Note down the token generated.
|
|
|
|
|
2018-09-27 18:13:21 +02:00
|
|
|
You're now going to need to run a Trello configuration script from a
|
|
|
|
computer (any computer) connected to the internet. It won't make any
|
|
|
|
changes to the computer.
|
2018-09-21 20:21:07 +02:00
|
|
|
|
2018-09-22 04:20:17 +02:00
|
|
|
1. Make sure you have a working copy of Python. If you're running
|
2018-09-21 20:21:07 +02:00
|
|
|
macOS or Linux, you very likely already do. If you're running
|
|
|
|
Windows you may or may not. If you don't have Python, follow the
|
|
|
|
installation instructions
|
|
|
|
[here](https://realpython.com/installing-python/). Note that you
|
|
|
|
do not need the latest version of Python; anything 2.7 or higher
|
|
|
|
will do.
|
|
|
|
|
|
|
|
1. Download [zulip-trello.py][2]. `Ctrl+s` or `Cmd+s` on that page should
|
2018-09-14 22:46:20 +02:00
|
|
|
work in most browsers.
|
2018-09-11 00:45:03 +02:00
|
|
|
|
2018-09-14 22:46:20 +02:00
|
|
|
1. Run the `zulip-trello` script in a terminal, after replacing the
|
|
|
|
arguments with the values collected above.
|
2018-03-29 18:04:18 +02:00
|
|
|
|
|
|
|
```
|
2018-09-14 22:46:20 +02:00
|
|
|
python zulip_trello.py --trello-board-name <trello_board_name> \
|
|
|
|
--trello-board-id <trello_board_id> \
|
|
|
|
--trello-api-key <trello_api_key> \
|
|
|
|
--trello-token <trello_token> \
|
|
|
|
--zulip-webhook-url <zulip_webhook_url>
|
2018-03-29 18:04:18 +02:00
|
|
|
```
|
|
|
|
|
2018-09-14 22:46:20 +02:00
|
|
|
The `zulip_trello.py` script only needs to be run once, and can be run
|
|
|
|
on any computer with python.
|
2018-03-29 18:04:18 +02:00
|
|
|
|
2018-09-14 22:46:20 +02:00
|
|
|
1. You can delete `zulip_trello.py` from your computer if you'd like.
|
2018-03-29 18:04:18 +02:00
|
|
|
|
2018-09-14 22:46:20 +02:00
|
|
|
[2]: https://raw.githubusercontent.com/zulip/python-zulip-api/master/zulip/integrations/trello/zulip_trello.py
|
2018-03-29 18:04:18 +02:00
|
|
|
|
|
|
|
{!congrats.md!}
|
2017-04-04 10:20:31 +02:00
|
|
|
|
|
|
|
![](/static/images/integrations/trello/001.png)
|