Initial commit: restructure to flat layout with ui/ and web/ at root

This commit is contained in:
2026-03-12 21:33:50 +08:00
commit decba25a08
1708 changed files with 199890 additions and 0 deletions

23
run.bat Normal file
View File

@@ -0,0 +1,23 @@
@echo off
echo Starting OpenCode...
start "OpenCode" cmd /c "opencode serve"
echo Waiting for OpenCode to start...
:wait_loop
curl -s http://localhost:4096/health >nul 2>&1
if %errorlevel% neq 0 (
timeout /t 1 >nul
goto wait_loop
)
echo OpenCode started on port 4096
echo.
echo Starting OpenChamber...
start "OpenChamber" cmd /c "bun run start:web"
echo.
echo ========================================
echo OpenChamber should be ready at:
echo http://localhost:3000
echo ========================================
pause