Sync: Complete project state with all MEGA SPRINT V1-V3 features and Codex stubs

This commit is contained in:
renato97
2026-04-08 17:58:47 -03:00
parent c9d3528900
commit 6d080d43b3
372 changed files with 189715 additions and 8590 deletions

View File

@@ -0,0 +1,13 @@
param(
[string]$Host = "127.0.0.1",
[int]$Port = 8765
)
. (Join-Path $PSScriptRoot "Common.ps1")
$dashboardScript = Join-Path (Get-RalphRoot) "gui\app.py"
if (-not (Test-Path $dashboardScript)) {
throw "Dashboard script not found: $dashboardScript"
}
& python $dashboardScript --host $Host --port $Port