Add Windows (PowerShell) support

- scripts/setup.ps1, scripts/pull-models.ps1, run.ps1 — PowerShell equivalents
  of the bash setup/pull/run scripts
- README + docs/DEPLOY.md: Windows quickstart and Task Scheduler autostart

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Joseph Costa
2026-07-05 02:12:02 -05:00
co-authored by Claude Opus 4.8
parent 9938d46a67
commit 95da8fb38d
5 changed files with 131 additions and 0 deletions
+7
View File
@@ -61,6 +61,13 @@ git clone <your-fork-url> llm-router && cd llm-router
./run.sh
```
On **Windows** (PowerShell), use the `.ps1` equivalents:
```powershell
powershell -ExecutionPolicy Bypass -File .\scripts\setup.ps1
powershell -ExecutionPolicy Bypass -File .\scripts\pull-models.ps1
powershell -ExecutionPolicy Bypass -File .\run.ps1
```
Then point any OpenAI client at `http://localhost:8080/v1` with `model: "auto"`:
```bash