Fix syntax errors in perfis-catalog.js for Vite compatibility

This commit is contained in:
Marcos
2026-03-22 20:33:09 -03:00
parent 44aa8a0a36
commit 0d4499f338
37 changed files with 1250 additions and 13116 deletions

27
scripts/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