Files
WEBtomaste/start-server.bat

26 lines
617 B
Batchfile
Raw Permalink Normal View History

2025-12-10 12:17:30 -05:00
@echo off
chcp 65001 >nul
title Serveur Web Local - Atomaste
echo ========================================
echo Serveur Web Local - Atomaste
echo ========================================
echo.
echo Demarrage du serveur sur le port 8080...
echo.
echo Ouvrez votre navigateur a l'adresse:
echo http://localhost:8080
echo.
echo Ou depuis un autre appareil sur le reseau:
echo http://[VOTRE_IP]:8080
echo.
2025-12-10 12:17:30 -05:00
echo Appuyez sur Ctrl+C pour arreter le serveur
echo ========================================
echo.
timeout /t 2 /nobreak >nul
start http://localhost:8080
python -m http.server 8080 --bind 0.0.0.0
2025-12-10 12:17:30 -05:00
pause