Home

Awesome

canonBrighter
Brighter is a framework for building messaging app with .NET and C#. It can be used with an in-memory bus, or for interoperability in a microservices architecture, out of process via a wider range of middleware transports.
VersionNuGet Version
DownloadNuGet Downloads
DocumentationTechnical Documentation
Sourcehttps://github.com/BrighterCommand/Brighter
Keywordstask queue, job queue, asynchronous, async, rabbitmq, amqp, sqs, sns, kafka, redis, c#, command, command dispatcher, command processor, queue, distributed

What Scenarios Can You Use Brighter in?

Documentation

What are the different branches?

BranchDescription
MasterThe tip of active development. Anything in master should ship at the next release. Code here should conform to CI basics: compile, pass tests etc.
Release [X]The code for an actively supported release. Created when master needs breaking changes that are not compatible with the current release. We support one 'historical' release.
[Other]A branch for any work that is not ready to go into master (for example would break CI) or is experimental i.e. we don't know if we intend to ever ship, we are just trying out ideas.

Using Docker Compose to test

We provide a Docker Compose file to allow you to run the test suite, without having to install the pre-requisites, such as brokers or databases locally.

To run it, you will need to scale the redis sentinel to at least 3 nodes, and use at least two redis slaves. For example:

docker-compose up -d --build --scale redis-slave=2 --scale redis-sentinel=3

The goal is to allow you to begin working with Brighter as easily as possible for development.

Note that if you have locally installed versions of these services you will either need to stop them, or edit a local version of the docker compose file.

How do I get the NuGet packages for the latest build?

We release the build artefacts (NuGet packages) to NuGet on a regular basis and we update the release notes on those drops. We also tag the master code line. If you want to take the packages that represent master at any point you can download the packages for the latest good build from GitHub Packages.

<a href="https://scan.coverity.com/projects/2900"> <img alt="Coverity Scan Build Status" src="https://scan.coverity.com/projects/2900/badge.svg"/> </a>

CI