Spaces:
Sleeping
Sleeping
File size: 372 Bytes
cc678b9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | $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
|