File size: 919 Bytes
41a5bbb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | @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
|