From 5b374178b05826385bb4716f675a3ca7ac3781e3 Mon Sep 17 00:00:00 2001 From: PiotrFerenc <30370747+PiotrFerenc@users.noreply.github.com> Date: Fri, 10 May 2024 15:48:32 +0200 Subject: [PATCH 1/6] Update README.md --- README.md | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index ae62362..19f9f4c 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,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 +81,10 @@ 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 -``` - -```shell -cd mash2 -``` + Linux: ```shell -make docker-rebuild +wget https://raw.githubusercontent.com/PiotrFerenc/mash2/main/build.sh && chmod +x build.sh && ./build.sh ``` ## Usage From 6988d397e8cabc19d94cf42c8cae94c7ff95c7fe Mon Sep 17 00:00:00 2001 From: PiotrFerenc <30370747+PiotrFerenc@users.noreply.github.com> Date: Sat, 11 May 2024 21:51:10 +0200 Subject: [PATCH 2/6] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 19f9f4c..e925b91 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ *DRAFT* + --- **Opis** From cdc77d2e266f35a651c2284c1e25be0cebb39499 Mon Sep 17 00:00:00 2001 From: Piotr Date: Sun, 12 May 2024 19:37:50 +0200 Subject: [PATCH 3/6] Add Windows installation instructions and script This commit introduces support for Windows. It adds a new PowerShell script for installing the application on Windows and updates the README file to include Windows-specific installation instructions. --- README.md | 6 ++++++ build.ps1 | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 build.ps1 diff --git a/README.md b/README.md index e925b91..60acd18 100644 --- a/README.md +++ b/README.md @@ -83,11 +83,17 @@ Invoke-WebRequest -Uri "https://raw.githubusercontent.com/PiotrFerenc/mash2/main - [docker-compose](https://docs.docker.com/compose/install/) - [GO](https://go.dev/doc/install) + Linux: ```shell wget https://raw.githubusercontent.com/PiotrFerenc/mash2/main/build.sh && chmod +x build.sh && ./build.sh ``` +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 ```shell 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 From 7611344b34a2506e51e92de69cfabbc1aba420d8 Mon Sep 17 00:00:00 2001 From: Piotr Date: Sun, 12 May 2024 19:39:51 +0200 Subject: [PATCH 4/6] Add CLI task details to README The README.md file was updated with additional Command Line Interface (CLI) details. Task items including 'prompt', 'list', and 'run' have been added to provide more specific information on CLI features. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 60acd18..6e9725d 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,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 From e59c0c9e8005b09ed6b3a31555ef744b754f4b9d Mon Sep 17 00:00:00 2001 From: PiotrFerenc <30370747+PiotrFerenc@users.noreply.github.com> Date: Mon, 13 May 2024 21:38:39 +0200 Subject: [PATCH 5/6] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 6e9725d..dffd8ce 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ *DRAFT* - - --- **Opis** From 2b5c93704cc41d8141019104aecbf09a910e10bd Mon Sep 17 00:00:00 2001 From: PiotrFerenc <30370747+PiotrFerenc@users.noreply.github.com> Date: Tue, 14 May 2024 17:13:31 +0200 Subject: [PATCH 6/6] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index dffd8ce..884203a 100644 --- a/README.md +++ b/README.md @@ -127,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