Files
cjfx/backend/run_backend.ps1

8 lines
173 B
PowerShell
Raw Normal View History

2026-03-20 22:59:54 +08:00
$ErrorActionPreference = 'Stop'
$root = Split-Path -Parent $PSScriptRoot
Set-Location $root
python -m uvicorn app.main:app --app-dir backend --host 127.0.0.1 --port 3000