LJTSG commited on
Commit
41a5bbb
·
verified ·
1 Parent(s): b8722d0

Upload Start-ALL.bat with huggingface_hub

Browse files
Files changed (1) hide show
  1. Start-ALL.bat +27 -0
Start-ALL.bat ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @echo off
2
+ title Thinking Engine — Full Stack
3
+ cd /d "%~dp0"
4
+ echo ============================================
5
+ echo Thinking Engine — Full Stack Launcher
6
+ echo ============================================
7
+ echo.
8
+ echo 1. Starting file server (:8150)...
9
+ start "File Server 8150" cmd /c "node serve_gemma.js"
10
+ timeout /t 2 /nobreak >nul
11
+ echo 2. Starting bridge (:8160)...
12
+ start "Bridge 8160" cmd /c "node garden-bridge.js"
13
+ timeout /t 1 /nobreak >nul
14
+ echo 3. Opening webapp in Chrome...
15
+ start "" "http://localhost:8150/thinking-engine.html"
16
+ echo.
17
+ echo ============================================
18
+ echo All started!
19
+ echo File server: http://localhost:8150
20
+ echo Bridge: http://localhost:8160
21
+ echo Webapp: http://localhost:8150/thinking-engine.html
22
+ echo.
23
+ echo Once Gemma loads, the bridge tag should
24
+ echo turn green in the webapp header.
25
+ echo ============================================
26
+ echo.
27
+ pause