docs: add Windows proto install instructions

Co-authored-by: Maze <mazeincoding@users.noreply.github.com>
This commit is contained in:
Maze Winther 2026-07-23 19:08:51 +00:00 committed by Cursor Agent
parent 0b5310a17b
commit 179dd7dded
No known key found for this signature in database
1 changed files with 14 additions and 0 deletions

View File

@ -31,10 +31,24 @@ You can still find the previous version at [opencut-app/opencut-classic](https:/
Install [proto](https://moonrepo.dev/proto) if you haven't already:
**Linux, macOS, WSL:**
```sh
bash <(curl -fsSL https://moonrepo.dev/install/proto.sh)
```
**Windows (PowerShell):**
```powershell
irm https://moonrepo.dev/install/proto.ps1 | iex
```
If shims fail to run, allow local scripts for your user:
```powershell
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
```
From the repo root:
```sh