Fix syntax errors in perfis-catalog.js for Vite compatibility
This commit is contained in:
27
scripts/server.bat
Normal file
27
scripts/server.bat
Normal 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
|
||||
Reference in New Issue
Block a user