https://github.com/ignatandrei/sidecarcli
https://github.com/ignatandrei/sidecarcli
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ignatandrei/sidecarcli
- Owner: ignatandrei
- License: mit
- Created: 2020-10-10T16:07:38.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-12T15:13:16.000Z (almost 2 years ago)
- Last Synced: 2025-04-01T04:32:40.616Z (over 1 year ago)
- Language: C#
- Size: 123 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SideCarCLI
## Releases
You can download as a .NET Tool https://www.nuget.org/packages/sidecarcli/
or
You can download the latest release from the latest CI build,
https://github.com/ignatandrei/SideCarCLI/actions
## Documentation
Diagram for how SideCarCLI works: ( not show regex parsing for the command line)
( mermaid code :
>sequenceDiagram
participant S as SideCar
participant R as Real Application
participant L as Line Interceptor(s)
participant F as Finish Interceptor(s)
participant T as Timer Interceptor(s)
S->>R: Start Application
loop for each timer in json
S->>T: Start Timer application
end
loop for each line output from real application
R->>S: Send Output Line to SideCae\r
S->>+L: Start Line Interceptor with line output in command line
L->>-S: execute and returns
end
R->>S: End Application
S->>+F: Send line output
F->>-S: execute and returns
)