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
- Host: GitHub
- URL: https://github.com/cbsd/cbsd-mq-router
- Owner: cbsd
- License: bsd-2-clause
- Created: 2020-07-04T08:52:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-31T15:59:40.000Z (over 1 year ago)
- Last Synced: 2025-01-31T16:37:57.426Z (over 1 year ago)
- Language: Go
- Size: 20.5 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```