invoice_extractor / start.bat
github-actions[bot]
Sync from GitHub: 922d61677657398e61342f3cabff773c13c26de4
060dc2a
raw
history blame
759 Bytes
@echo off
echo ============================================
echo Starting Invoice Extractor Application
echo ============================================
echo.
echo Starting Backend Server...
start "Backend Server" cmd /k "python app.py"
timeout /t 5 /nobreak > nul
echo Starting Frontend Development Server...
start "Frontend Server" cmd /k "cd frontend && npm run dev"
echo.
echo ============================================
echo Both servers are starting!
echo ============================================
echo.
echo Backend: http://localhost:7860
echo Frontend: http://localhost:3000
echo.
echo Press any key to stop both servers...
pause > nul
taskkill /FI "WindowTitle eq Backend Server*" /T /F
taskkill /FI "WindowTitle eq Frontend Server*" /T /F