This project needs for forwarding sentry webhooks (alerts, events etc.) to Basecamp Campfire chat.
It may be helpfull when you need to notify all your team or business clients which are not Sentry subscribers.
This project requires python 3.10. Deps are managed by pip-tools
Install requirements:
$ pip install --upgrade pip pip-tools
$ pip-sync requirements.txt
Run the server:
$ cp src/.env.example src/.env # default environment variables
$ uvicorn src.main:app
Testing:
# run lint
$ make lint
# run unit tests
$ make test