carepath-api / scripts /run_api.ps1
tranth3truong's picture
Deploy public Scribe-only CarePath Space
cc678b9
Raw
History Blame Contribute Delete
372 Bytes
$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