项目作者: eventter

项目描述 :
Distributed message queue & stream search server
高级语言: Go
项目地址: git://github.com/eventter/eventter.git
创建时间: 2018-12-11T22:27:12Z
项目社区:https://github.com/eventter/eventter

开源协议:Other

下载


EventterMQ

GitLab Build Status
Docker Image on Docker Hub

Distributed message queue & stream search server

Overview

Status: Work in progress. Things might change a lot and quite often.

Contributing

Contributions are welcome and very much appreciated, whether they’re new features, bugfixes, or improvements to documentation.

To contribute:

  • Start by forking the project on GitHub.
  • Push changes to a feature branch.
  • Create a pull request.
  • For your changes to be accepted, please sign the CLA.
  • All code should be formatted using go fmt.
  • All tests must pass.

Development

The project uses Go modules, so you need Go 1.11 or newer.

Otherwise you can do everything the usual way with the Go toolchain.

  1. # install
  2. go install ./bin/eventtermq
  3. # test
  4. go test ./mq/...
  5. # fix code style
  6. go fmt ./mq/...

There is also a Makefile that wraps some usual workflows.

  1. # install
  2. make install
  3. # test
  4. make test
  5. # fix code style
  6. make fmt
  7. # generate sources, code style, run `go vet`, test & install
  8. make all install

Generated code

There are several Go source files that are generated from other sources. Most notably all *.pb.go files contain generated gRPC (de)serialization & stubs. To generate these files, run make generate.

License

Apache License, Version 2.0 with Commons Clause condition, see LICENSE file.