diff --git a/README.md b/README.md index ae62362..884203a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ *DRAFT* - --- **Opis** @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/build.ps1 b/build.ps1 new file mode 100644 index 0000000..e35824a --- /dev/null +++ b/build.ps1 @@ -0,0 +1,3 @@ +git clone https://github.com/PiotrFerenc/mash2 +cd mash2 +make docker-rebuild \ No newline at end of file