$ErrorActionPreference = "Stop" $RepoRoot = Resolve-Path (Join-Path $PSScriptRoot "..") Set-Location $RepoRoot if (-not (Test-Path ".\.venv\Scripts\python.exe")) { throw "Missing .venv. Run .\scripts\setup_local.ps1 first." } & ".\.venv\Scripts\python.exe" -m uvicorn carepath.main:app ` --app-dir scribe ` --reload ` --host 127.0.0.1 ` --port 8000