https://github.com/andrewwhitehead/aca-deliver
Message delivery for ACA-py
https://github.com/andrewwhitehead/aca-deliver
Last synced: about 2 months ago
JSON representation
Message delivery for ACA-py
- Host: GitHub
- URL: https://github.com/andrewwhitehead/aca-deliver
- Owner: andrewwhitehead
- Created: 2021-01-26T18:01:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-10T05:02:55.000Z (over 4 years ago)
- Last Synced: 2025-04-07T09:28:43.845Z (2 months ago)
- Language: Python
- Size: 29.3 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aca-deliver
A sample service for pulling outbound messages from Redis and delivering them to the
requested endpoint.## Running a test Redis server
To start the test Redis server, execute `run.sh` in the `test-server` directory.
The default redis URL is `redis://localhost:6379`
## Running the Python demo service
From the `python` directory:
```sh
pip install -r requirements.txt
python service.py $REDIS_HOST
```## Sending sample messages
Sample messages can be added to the queue using:
```sh
python send.py $REDIS_HOST $ENDPOINT $MESSAGE
```