Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 433 Bytes

readme.md

File metadata and controls

27 lines (19 loc) · 433 Bytes

Relay

This doc describes how to develop and run the relay service

Install

# Install dependencies
cd relay
go mod tidy

# Generate gRPC code
cd ..
make proto

# Run the relay server
cd relay
go run cmd/relay/main.go

The relay server will not connect to NATS until a user requests a queue to be created.

from the root of the project run NATS and Redis via docker compose.

docker compose up -d nats redis