@echo off REM Mago4 Demo - Script di avvio echo. echo ╔════════════════════════════════════════════════════════════╗ echo ║ Mago4 Demo - ERP Gestionale (FastAPI) ║ echo ╚════════════════════════════════════════════════════════════╝ echo. REM Verificare se Python è installato python --version >nul 2>&1 if errorlevel 1 ( echo [ERRORE] Python non trovato. Installare Python 3.8+ exit /b 1 ) echo [1] Controllo dipendenze... pip install -r requirements.txt echo. echo [2] Avvio applicazione... echo. echo Dashboard disponibile su: http://127.0.0.1:8000 echo API Documentation su: http://127.0.0.1:8000/docs echo. echo Premi CTRL+C per fermere il server echo. python main.py