Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s0xzwasd/go-rabbitmq-example
Basic example of RabbitMQ
https://github.com/s0xzwasd/go-rabbitmq-example
Last synced: about 24 hours ago
JSON representation
Basic example of RabbitMQ
- Host: GitHub
- URL: https://github.com/s0xzwasd/go-rabbitmq-example
- Owner: s0xzwasd
- License: unlicense
- Created: 2021-03-25T15:16:19.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-03-26T09:13:39.000Z (over 3 years ago)
- Last Synced: 2023-03-09T01:32:52.733Z (over 1 year ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RabbitMQ example with Go
1. Run Docker.
2. Execute in Terminal: `docker run -d --hostname rabbitmq-example --name rabbitmq -p 15672:15672 -p 5672:5672 rabbitmq:3-management`
2. Run the consumer service: `go run go-rabbitmq-example/consumer/main.go`
3. Run the main program and send a basic request: `go run go-rabbitmq-example/main.go`