Message brokering demo using RabbitMQ
The project consists of a Producer and Consumer
Run docker-compose up
Accessed on localhost:15672/#/queues/payments
Create queue payments
and bind it to amq.direct
exchange
Implemented as a REST API
POST localhost:8000/api/payments
Contains JSON string of data to be queued
{
"data":"{\"amount\":300,\"created_at\":\"14-02-2022 20:10:57\",\"account_no\":39023093,\"user_no\":239391}"
}