Initial commit: Atomaste website

This commit is contained in:
2025-12-10 12:17:30 -05:00
commit 0b9e5d1605
19260 changed files with 5206382 additions and 0 deletions

22
start-server.bat Normal file
View File

@@ -0,0 +1,22 @@
@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