Files
WEBtomaste/start-server.bat

23 lines
534 B
Batchfile

@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 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 127.0.0.1
pause