Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/amingolmahalle/rabbitmq_example
- Owner: amingolmahalle
- Created: 2020-06-04T20:42:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-27T10:03:59.000Z (over 2 years ago)
- Last Synced: 2024-10-15T03:10:03.380Z (2 months ago)
- Topics: asp-net-core, message-broker, rabbitmq
- Language: C#
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}