Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrFerenc committed May 14, 2024
2 parents 3d8b775 + 2b5c937 commit d9c6390
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
29 changes: 19 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
*DRAFT*


---

**Opis**
Expand Down Expand Up @@ -67,6 +66,12 @@ Linux:
wget https://raw.githubusercontent.com/PiotrFerenc/mash2/main/install.sh && chmod +x install.sh && ./install.sh
```

Windows:
```shell
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/PiotrFerenc/mash2/main/install.ps1" -OutFile "install.ps1"; .\install.[s1
```
## Build
### requirements
Expand All @@ -75,19 +80,16 @@ wget https://raw.githubusercontent.com/PiotrFerenc/mash2/main/install.sh && chmo
- [docker](https://docs.docker.com/engine/install/)
- [docker-compose](https://docs.docker.com/compose/install/)
- [GO](https://go.dev/doc/install)
```shell
wget https://raw.githubusercontent.com/PiotrFerenc/mash2/main/build.sh && chmod +x build.sh && ./build.sh
```
```git
git clone https://github.com/PiotrFerenc/mash2
```
Linux:
```shell
cd mash2
wget https://raw.githubusercontent.com/PiotrFerenc/mash2/main/build.sh && chmod +x build.sh && ./build.sh
```
```shell
make docker-rebuild
Windows:
```powershell
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/PiotrFerenc/mash2/main/build.ps1" -OutFile "build.ps1"; Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass -Force; ./build.ps1
```
## Usage
Expand Down Expand Up @@ -125,6 +127,10 @@ echo '{

curl -X POST localhost:5000/execute -H "Content-Type: application/json" -d @request.json
```
or
[C#](https://github.com/PiotrFerenc/mash2/wiki/C%23), [Go](https://github.com/PiotrFerenc/mash2/wiki/Go), [Rust](https://github.com/PiotrFerenc/mash2/wiki/Rust), [Java](https://github.com/PiotrFerenc/mash2/wiki/Java), [Typescript](https://github.com/PiotrFerenc/mash2/wiki/TypeScript), [PHP](https://github.com/PiotrFerenc/mash2/wiki/PHP), [COBOL](https://github.com/PiotrFerenc/mash2/wiki/COBOL), [Erlang](https://github.com/PiotrFerenc/mash2/wiki/Erlang), [Python](https://github.com/PiotrFerenc/mash2/wiki/Python), [Ruby](https://github.com/PiotrFerenc/mash2/wiki/Ruby), [Scala](https://github.com/PiotrFerenc/mash2/wiki/Scala)
## Actions
Expand All @@ -133,6 +139,9 @@ curl -X POST localhost:5000/execute -H "Content-Type: application/json" -d @requ
- [x] Application Programming Interface (API)
- [ ] Monitoring and Logging
- [ ] CLI
- prompt
- list
- run
- [x] Triggering Tasks
- [x] Handling Distributed Tasks
- [x] Error Management
Expand Down
3 changes: 3 additions & 0 deletions build.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
git clone https://github.com/PiotrFerenc/mash2
cd mash2
make docker-rebuild

0 comments on commit d9c6390

Please sign in to comment.