Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renanmav/goexpert-events
https://github.com/renanmav/goexpert-events
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/renanmav/goexpert-events
- Owner: renanmav
- Created: 2024-05-14T03:26:12.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-11T18:51:11.000Z (4 months ago)
- Last Synced: 2024-10-18T09:55:01.769Z (3 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
```