An open API service indexing awesome lists of open source software.

https://github.com/cbsd/cbsd-mq-router

CBSD message queue router
https://github.com/cbsd/cbsd-mq-router

Last synced: 6 months ago
JSON representation

CBSD message queue router

Awesome Lists containing this project

README

          

# cbsd-mq-router

CBSD message queue router: subscribe to events and deliver to the CBSD
Client + sample: https://github.com/cbsd/bs_router-client

# Installation

Install dependency first:

```
pkg install -y beanstalkd
service beanstalkd enable
sysrc beanstalkd_flags="-l 127.0.0.1"
service beanstalkd start
```

Build cbsd-mq-router:

```
setenv GOPATH $( realpath . )
go get
go build
pkg update -f
```

## update mods

```
rm -f go.mod go.sum
```

```
go mod init cbsd-mq-router
go mod tidy
```