Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/amingolmahalle/rabbitmq_example

Set up RabbitMQ message broker.
https://github.com/amingolmahalle/rabbitmq_example

asp-net-core message-broker rabbitmq

Last synced: 25 days ago
JSON representation

Set up RabbitMQ message broker.

Awesome Lists containing this project

README

        

# Rabbitmq_Example

Set up RabbitMQ message broker with Asp.Net Core 3.1 and Docker.

This project is an example of how to run a RabbitMQ in Asp.Net Core 3.1 .

For install and run RabbitMQ Management by Docker,run the following code in the terminal:

sudo docker run --rm -p 5672:5672 -p 15672:15672 --name bitnami bitnami/rabbitmq

for see rabbitmq managment, call localhost:15672 in browser.

username: user

password: bitnami

Url for calling apis:

localhost:7000/Notification/SendEmail

body:

{
"subject":"test",
"message":"Hello amin Golmahalle",
"Email":"[email protected]"
}

localhost:7000/Notification/SendSms

body:
{
"message":"Hello amin Golmahalle",
"mobile":"09123456789"
}