Initial commit SteelBase - Oficiais e Funcionando

This commit is contained in:
Marcos
2026-03-22 16:56:47 -03:00
commit f10278909b
194 changed files with 87242 additions and 0 deletions

27
server.bat Normal file
View File

@@ -0,0 +1,27 @@
@echo off
echo.
echo ╔════════════════════════════════════════════════════════════╗
echo ║ AÇO CALC PRO - Iniciando Servidor ║
echo ╚════════════════════════════════════════════════════════════╝
echo.
REM Verificar se Python está instalado
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo ❌ Python não encontrado!
echo.
echo Por favor, instale Python 3:
echo https://www.python.org/downloads/
echo.
pause
exit /b 1
)
echo ✅ Python encontrado
echo.
echo 🚀 Iniciando servidor...
echo.
python server.py
pause