| @echo off | |
| title Thinking Engine — Full Stack | |
| cd /d "%~dp0" | |
| echo ============================================ | |
| echo Thinking Engine — Full Stack Launcher | |
| echo ============================================ | |
| echo. | |
| echo 1. Starting file server (:8150)... | |
| start "File Server 8150" cmd /c "node serve_gemma.js" | |
| timeout /t 2 /nobreak >nul | |
| echo 2. Starting bridge (:8160)... | |
| start "Bridge 8160" cmd /c "node garden-bridge.js" | |
| timeout /t 1 /nobreak >nul | |
| echo 3. Opening webapp in Chrome... | |
| start "" "http://localhost:8150/thinking-engine.html" | |
| echo. | |
| echo ============================================ | |
| echo All started! | |
| echo File server: http://localhost:8150 | |
| echo Bridge: http://localhost:8160 | |
| echo Webapp: http://localhost:8150/thinking-engine.html | |
| echo. | |
| echo Once Gemma loads, the bridge tag should | |
| echo turn green in the webapp header. | |
| echo ============================================ | |
| echo. | |
| pause | |