An open API service indexing awesome lists of open source software.

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

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
```