Class_generator/Start_Class_Generator_HTTP.bat
StillHammer fe7153d28b Fix compatibility system and improve UX
- Add intelligent content-game compatibility system with visual badges
- Fix Adventure Reader to work with Dragon's Pearl content structure
- Implement multi-column games grid for faster navigation
- Add pronunciation display for Chinese vocabulary and sentences
- Fix navigation breadcrumb to show proper hierarchy (Home > Levels > Content)
- Add back buttons to all navigation pages
- Improve JSONContentLoader to preserve story structure
- Add comprehensive debugging and diagnostic tools

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-18 19:29:21 +08:00

43 lines
1.1 KiB
Batchfile

@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