서버 안정화와 평가 모델 라우팅 보강

This commit is contained in:
Yun Chan 2026-06-27 16:34:27 +09:00
parent 0cdbf8e4fe
commit 0eb7d925ed
10 changed files with 179 additions and 39 deletions

View file

@ -227,12 +227,16 @@ function Ensure-DevDb {
}
Write-Host '[1/4] 기존 스택 정리...'
Stop-Stale 'engine_gateway\.gateway' 'gateway'
Stop-Stale 'app\.main:app' 'api'
Stop-Stale 'vite' 'web'
Stop-ListenerByPort 9099 'gateway'
if (-not $NoGateway) {
Stop-Stale 'engine_gateway\.gateway' 'gateway'
Stop-ListenerByPort 9099 'gateway'
}
Stop-Stale ('app\.main:app.*--port\s+{0}' -f $ApiPort) 'api'
Stop-ListenerByPort $ApiPort 'api'
Stop-ListenerByPort 5173 'web'
if (-not $NoWeb) {
Stop-Stale 'vite.*--port\s+5173' 'web'
Stop-ListenerByPort 5173 'web'
}
Start-Sleep -Seconds 2
if (-not $NoDb) {