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

19
start-frontend.bat Normal file
View File

@@ -0,0 +1,19 @@
@echo off
echo ========================================
echo Starting Family Hub Frontend
echo ========================================
echo.
cd frontend
if not exist node_modules (
echo ERROR: Node modules not found!
echo Please run setup.bat first
pause
exit /b 1
)
echo Starting Vite dev server on http://localhost:5173
echo Press Ctrl+C to stop the server
echo.
call npm run dev