ivy-gpu-art-studio / Launch-local-app.bat
Elysia-Suite's picture
Upload 23 files
e5d943e 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 ══════════════════════════════════════════════════════