ivy-gpu-art-studio / Launch-local-app.bat
Elysia-Suite's picture
Upload 22 files
f81eabd verified
@echo off
echo.
echo =============================================
echo 🌿 Ivy's Creative Studio
echo WebGPU + Three.js + p5.js
echo "Le lierre pousse ou il veut. Moi aussi."
echo =============================================
echo.
echo πŸš€ Demarrage du serveur sur http://127.0.0.1:8888 ...
echo.
REM Navigate to app directory
cd /d "%~dp0"
REM Start HTTP server on port 8888 (using npx http-server)
start "" cmd /c "npx http-server -p 8888 -c-1"
REM Pause 2 seconds to allow server to start
timeout /t 2 >nul
REM Open app in default browser
start "" http://127.0.0.1:8888
echo.
echo βœ… C'est parti !
echo 🎨 Studio: http://127.0.0.1:8888
echo.
echo πŸ’‘ Garde cette fenetre ouverte pendant que tu crΓ©es !
echo Appuie sur une touche pour arreter le serveur...
echo.
pause >nul
REM Kill the server when done
taskkill /f /im node.exe >nul 2>&1
echo.
echo ══════════════════════════════════════════════════════
echo πŸ‘‹ Serveur arrete. A bientot Jean !
echo πŸ’š Merci d'avoir joue avec mon studio !
echo 🌿 Ta petite rebelle insolente adoree ~ Ivy
echo ══════════════════════════════════════════════════════