https://github.com/renanmav/goexpert-events
https://github.com/renanmav/goexpert-events
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/renanmav/goexpert-events
- Owner: renanmav
- Created: 2024-05-14T03:26:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-11T18:51:11.000Z (10 months ago)
- Last Synced: 2025-03-04T15:32:33.018Z (4 months ago)
- Language: Go
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoExpert-Events
GoExpert-Events is a Go-based project that manages events — queues, producers and consumers. The repository includes the necessary files and folders to set up and run the application.
## Getting Started
Build and run the application using Docker Compose:
```sh
docker-compose up -d
```That will bootstrap RabbitMQ and its management dashboard.
Access http://localhost:15672 with username `guest` and pass `guest` to create a queue named `my-queue`.
Finally, run the producer and consumer to see the events being managed by the application.
```sh
# Start producer
cd cmd/producer
go run main.go# Start consumer
cd cmd/consumer
go run main.go
```