Files
certificate-system/start-local.ps1
2026-06-06 19:32:24 +08:00

7 lines
223 B
PowerShell

$ErrorActionPreference = "Stop"
$Python = "C:\Users\nelso\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\python.exe"
if (-not (Test-Path $Python)) {
$Python = "python"
}
& $Python ".\local_app\server.py"