No description
- Go 97.7%
- Just 2.3%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| cmd | ||
| .gitignore | ||
| docker-compose.yml | ||
| go.mod | ||
| go.sum | ||
| Justfile | ||
| readme.md | ||
Hello, RabbitMQ!
Simple hello world using Go and RabbitMQ.
All parts run using Go compiler and just.
Environment
Create .env file in the root with these variables (change values)
RABBITMQ_URI=amqp://localhost:5672
Running server
just serve
Running consumer
just consume
Running publisher
just publish [name] # for example, World
After publishing, terminal with consumer running should output string Hello, {name}!.