@echo off title Class Generator - HTTP Server color 0A echo ======================================== echo CLASS GENERATOR - SERVEUR HTTP echo ======================================== echo. cd /d "%~dp0" echo [1/3] Demarrage du serveur WebSocket Logger (port 8082)... echo ---------------------------------------- cd export_logger start /min cmd /c "node websocket-server.js" cd .. timeout /t 2 /nobreak > nul echo [2/3] Demarrage du serveur HTTP (port 8080)... echo ---------------------------------------- start /min cmd /c "python -m http.server 8080" timeout /t 3 /nobreak > nul echo [3/3] Ouverture de l'application... echo ---------------------------------------- start "" "http://localhost:8080" echo. echo ======================================== echo DEMARRAGE TERMINE AVEC SUCCES! echo ======================================== echo. echo Serveur HTTP: http://localhost:8080 echo Serveur WebSocket: ws://localhost:8082 echo Logger: Accessible via le bouton en haut a droite echo. echo Cette fenetre peut etre fermee. echo Les serveurs continuent en arriere-plan. echo. timeout /t 5 /nobreak > nul exit