Files
ANDREW HOSFORD 0e8978f48c Update project files
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 11:59:48 -05:00

17 lines
579 B
Batchfile

@echo off
REM Launch req-planner: backend (FastAPI) + frontend (Angular)
echo Starting backend on http://localhost:8100 ...
start "req-planner-backend" /D "%~dp0backend" cmd /c ".venv\Scripts\python -m uvicorn app.main:app --reload --port 8100"
echo Starting frontend on http://localhost:4200 ...
start "req-planner-frontend" /D "%~dp0frontend" cmd /c "npx ng serve"
echo.
echo req-planner running:
echo Frontend: http://localhost:4200
echo Backend: http://localhost:8100
echo API docs: http://localhost:8100/docs
echo.
echo Close the spawned windows to stop services.