signal-webhook-handler/README.md

19 lines
494 B
Markdown
Raw Normal View History

2022-03-22 13:46:09 +01:00
# signal-webhook-handler
Provide ways to send notifications to signal-cli through webhooks
## Install
```bash
virtualenv -p python3 --system-site-packages venv
source venv/bin/activate
pip install -r requirements.txt
2022-03-23 17:45:08 +01:00
# Configure
cp signal_webhook/configuration.sample.py signal_webhook/configuration.py
$EDITOR signal_webhook/configuration.py
2022-03-22 13:46:09 +01:00
```
**Beware!** Sending messages to Signal requires `gi`, which cannot be installed
in a virtualenv; hence the need for `--system-site-packages`.