Update project files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
ANDREW HOSFORD
2026-04-07 11:59:48 -05:00
parent dd227be9b0
commit 0e8978f48c
50 changed files with 5878 additions and 241 deletions

16
launch.bat Normal file
View File

@@ -0,0 +1,16 @@
@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.