Phase 3.1: Enhanced Chore Logging and Reporting System

This commit is contained in:
2026-02-05 12:33:51 +11:00
commit e3cae7bfbb
178 changed files with 30105 additions and 0 deletions

29
start-all.bat Normal file
View File

@@ -0,0 +1,29 @@
@echo off
echo ========================================
echo Starting Family Hub (Backend + Frontend)
echo ========================================
echo.
REM Start backend in a new window
echo Starting Backend...
start "Family Hub - Backend" cmd /k start-backend.bat
REM Wait a moment for backend to initialize
timeout /t 3 /nobreak >nul
REM Start frontend in a new window
echo Starting Frontend...
start "Family Hub - Frontend" cmd /k start-frontend.bat
echo.
echo ========================================
echo Both services are starting!
echo ========================================
echo Backend: http://localhost:8001
echo Frontend: http://localhost:5173
echo API Docs: http://localhost:8001/docs
echo.
echo Close the terminal windows to stop the services
echo Or run stop-all.bat to stop them
echo.
pause