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

17
stop-all.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
echo ========================================
echo Stopping Family Hub Services
echo ========================================
echo.
echo Stopping backend (uvicorn)...
taskkill /FI "WINDOWTITLE eq Family Hub - Backend*" /T /F 2>nul
taskkill /IM uvicorn.exe /F 2>nul
echo Stopping frontend (node/vite)...
taskkill /FI "WINDOWTITLE eq Family Hub - Frontend*" /T /F 2>nul
for /f "tokens=5" %%a in ('netstat -aon ^| find ":5173" ^| find "LISTENING"') do taskkill /F /PID %%a 2>nul
echo.
echo All Family Hub services stopped.
pause