Skip to content
This repository was archived by the owner on Dec 23, 2025. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 663 Bytes

File metadata and controls

31 lines (22 loc) · 663 Bytes

About project

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.

Installing on a local machine

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