No description
  • Go 97.7%
  • Just 2.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-07-28 00:26:11 +03:00
cmd handle SIGINT & SIGTERM signals 2026-07-28 00:26:11 +03:00
.gitignore init 2026-07-28 00:11:12 +03:00
docker-compose.yml init 2026-07-28 00:11:12 +03:00
go.mod init 2026-07-28 00:11:12 +03:00
go.sum init 2026-07-28 00:11:12 +03:00
Justfile init 2026-07-28 00:11:12 +03:00
readme.md init 2026-07-28 00:11:12 +03:00

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}!.