Go to file
dependabot[bot] 34a0ce036f
Bump waitress from 1.4.4 to 2.1.1
Bumps [waitress](https://github.com/Pylons/waitress) from 1.4.4 to 2.1.1.
- [Release notes](https://github.com/Pylons/waitress/releases)
- [Changelog](https://github.com/Pylons/waitress/blob/master/CHANGES.txt)
- [Commits](https://github.com/Pylons/waitress/compare/v1.4.4...v2.1.1)

---
updated-dependencies:
- dependency-name: waitress
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-21 22:27:29 +00:00
.github/workflows Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
assets What is my purpose? 2020-04-23 11:00:19 +02:00
butterrobot Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
butterrobot_plugins_contrib Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
docker Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
docs Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
tests Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
.env-example Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
.gitignore Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
.pre-commit-config.yaml Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
Dockerfile.dev Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
Makefile Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
README.md Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00
poetry.lock Bump waitress from 1.4.4 to 2.1.1 2022-03-21 22:27:29 +00:00
pyproject.toml Bump waitress from 1.4.4 to 2.1.1 2022-03-21 22:27:29 +00:00
setup.cfg Added admin interface to manage channels and enabled plugins (#9) 2022-02-05 13:00:20 +01:00

README.md

Butter Robot

Stable Master
Build stable tag docker image Build latest tag docker image
Pytest Pytest

Python framework to create bots for several platforms.

Butter Robot

What is my purpose?

Documentation

Go to documentation

Installation

PyPi

You can run it directly by installing the package and calling it with python though this is not recommended and only intended for development purposes.

$ pip install --user butterrobot
$ python -m butterrobot

Containers

The fmartingr/butterrobot/butterrobot container image is published on Github packages to use with your favourite tool:

docker pull docker.pkg.github.com/fmartingr/butterrobot/butterrobot:latest
podman run -d --name fmartingr/butterrobot/butterrobot -p 8080:8080

Contributing

To run the project locally you will need poetry.

git clone git@github.com:fmartingr/butterrobot.git
cd butterrobot
poetry install

Create a .env-local file with the required environment variables, you have an example file.

SLACK_TOKEN=xxx
TELEGRAM_TOKEN=xxx
...

And then you can run it directly with poetry

docker run -it --rm --env-file .env-local -p 5000:5000 -v $PWD/butterrobot:/etc/app/butterrobot local/butterrobot python -m butterrobot