Update README
All checks were successful
/ test (push) Successful in 4s

This commit is contained in:
phil 2024-12-01 13:19:42 +01:00
parent 6a581eae0a
commit a0a6cd86b2

View file

@ -93,3 +93,18 @@ handle /sms-handler/* {
reverse_proxy 192.168.100.2:8025
}
```
## Development and test
*sms-handler* is packaged with [uv](https://docs.astral.sh/uv/).
Download source code, create a Python virtual environment, install dependencies and run the tests:
```sh
git clone https://philo.ydns.eu/code/Philome/sms-handler.git
cd sms-handler
uv venv
uv sync
. .venv/bin/activate
pytest -s tests/basic.py
```