Skip to content

Commit

Permalink
Add Windows installation instructions and script
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
PiotrFerenc committed May 12, 2024
1 parent 6988d39 commit cdc77d2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 cdc77d2

Please sign in to comment.