Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Change diagram format (mermaid) in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Strappazzon C committed Feb 24, 2022
1 parent addd7ab commit ac03a07
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ A flexible, light, easy to use, automation framework for typical data manipulati

## Components:

![Flow](https://raw.githubusercontent.com/debeando/lightflow/master/assets/flow.png)
```mermaid
graph LR;
A[Task]-->B[Interval];
A-->C[Pipe];
B-->C;
C-->B;
C-->A;
C-->D[Chunk];
D-->E[Plugins];
E-->D;
E-->A;
E<-->F[Retry];
E-->H[Template];
E-->I[Register];
I-->H;
H-->E
```

- **Tasks:** Collections of pipes.
- **Pipes:** Collections of commands to execute in the bash with many abilities;
Expand Down

0 comments on commit ac03a07

Please sign in to comment.