Spaces:
Paused
Paused
File size: 906 Bytes
5a81b95 | 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 WidgeTDC SuperLeague Launcher
color 0b
echo ========================================================
echo W ID G E T T D C S U P E R L E A G U E
echo ========================================================
echo.
echo [1/3] Connecting to Cloud Brain (Hugging Face GPU)...
echo URL: https://Kraft102-widgetdc.hf.space
echo.
echo [2/3] Starting Local Neural Interface...
REM Navigate to project root relative to this script (scripts/../)
cd /d "%~dp0.."
cd apps/matrix-frontend
start "WidgeTDC Frontend" /min npm run dev
echo.
echo [3/3] Launching Mission Control...
timeout /t 5 >nul
start http://localhost:8888
echo.
echo ========================================================
echo SYSTEM ONLINE. YOU HAVE CONTROL.
echo ========================================================
echo.
echo Press any key to stop the local interface...
pause >nul
taskkill /f /im node.exe |