@echo off echo ======================================== echo STARTING ALL SERVICES echo ======================================== echo. REM Start backend services (GeViServer, SDK Bridge, Python API) echo [1/2] Starting backend services... cd C:\DEV\COPILOT\geutebruck-api call start-services.ps1 echo. echo [2/2] Starting Flutter app on port 8081... cd C:\DEV\COPILOT\geutebruck_app\build\web start "Flutter App Server" python -m http.server 8081 --bind 0.0.0.0 echo. echo ======================================== echo ALL SERVICES STARTED! echo ======================================== echo. echo Flutter App: http://100.81.138.77:8081/ echo Backend API: http://localhost:8000 echo Swagger UI: http://localhost:8000/docs echo. echo Press any key to close this window... pause >nul