Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mytang0/brook

Brook is an orchestration engine, supports microservices and in-app logic (embedded use) orchestration.
https://github.com/mytang0/brook

embedded flow-engine java microservice microservice-orchestration orchestration orchestration-engine orchestrator plugins serverless springboot workflow-engine workflows

Last synced: 12 days ago
JSON representation

Brook is an orchestration engine, supports microservices and in-app logic (embedded use) orchestration.

Awesome Lists containing this project

README

        

# Brook

Brook is an orchestration engine, supports microservices and in-app logic (embedded use) orchestration. With the embedded mode, users can effortlessly build their own workflow orchestration engine.

## Getting started

In order to maximize the lightweight nature of the Brook engine, a deliberate separation is made between its core components (which depend solely on a few essential toolkits) and the middleware extensions using SPI (Service Provider Interface). Consequently, regardless of the application implementation framework, one can seamlessly rely on the engine JAR and initialize the relevant instances.

### Maven dependency

Specify the version appropriate for the project, see [releases](https://github.com/mytang0/brook/releases).
```xml

...

```

#### Not using Spring

```xml


xyz.mytang0.brook
>brook-engine
${brook.version}

```

#### Springboot (recommend)

```xml


xyz.mytang0.brook
>brook-spring-boot-starter
${brook.version}

```

### Demo

After cloning the repository, the demo is located in the brook-demo module.
The definition of the testing process is located at 'resources/META-INF/flows'.

## Contributing

Brook welcomes anyone that wants to help out in any way, whether that includes reporting problems, helping with documentation, or contributing code changes to fix bugs, add tests, or implement new features. You can report problems to request features in the [GitHub Issues](https://github.com/mytang0/brook/issues).

### Code Contribute

- Left comment under the issue that you want to take.
- Fork Brook project to your GitHub repositories.
- Clone and compile your Brook project.
```bash
git clone https://github.com/your_name/brook.git
cd brook
mvn clean install -DskipTests
```
- Check to a new branch and start your work.
```bash
git checkout -b my_feature
```
- Push your branch to your github.
```bash
git push origin my_feature
```
- Create a new PR to https://github.com/mytang0/brook/pulls .