@echo off REM ============================================================================ REM Spotify Le 2 - Start Web Client REM ============================================================================ REM This script launches the Flutter app in web mode for debugging REM ============================================================================ echo ======================================== echo SPOTIFY LE 2 - WEB CLIENT echo ======================================== echo. cd frontend echo Checking Flutter installation... flutter --version if %ERRORLEVEL% NEQ 0 ( echo [ERROR] Flutter is not installed! pause exit /b 1 ) echo. echo Installing dependencies... flutter pub get echo. echo Starting web application... echo The app will open in your default browser at: http://localhost:8080 echo. echo Press Ctrl+C to stop the server echo. flutter run -d chrome pause