Initial commit

This commit is contained in:
2025-12-05 11:27:16 -03:00
commit 804bacfbe3
87 changed files with 7260 additions and 0 deletions

27
start.bat Normal file
View File

@@ -0,0 +1,27 @@
@echo off
echo ========================================
echo Iniciando Sistema de Gestion de Pedidos
echo ========================================
echo.
echo [1/2] Iniciando Backend...
start "Backend - FastAPI" cmd /k "python run.py"
timeout /t 3 /nobreak >nul
echo [2/2] Iniciando Frontend...
cd frontend
start "Frontend - HTTP Server" cmd /k "python -m http.server 3000"
cd ..
echo.
echo ========================================
echo Sistema iniciado!
echo.
echo Backend: http://localhost:8000
echo Frontend: http://localhost:3000
echo Docs: http://localhost:8000/docs
echo ========================================
echo.
pause