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

35
SETUP_KIOSK.bat Normal file
View File

@@ -0,0 +1,35 @@
@echo off
echo.
echo ========================================
echo KIOSK VIEW SETUP
echo ========================================
echo.
echo This will restart backend to load public API endpoints
echo for the new Kiosk View interface.
echo.
pause
echo.
echo 1. Restarting backend...
echo.
cd /d D:\Hosted\familyhub
call restart_backend.bat
echo.
echo ========================================
echo ✅ Backend restarted!
echo ========================================
echo.
echo NEXT STEPS:
echo.
echo 1. If frontend is running, restart it:
echo - Press Ctrl+C in frontend terminal
echo - Run: npm run dev
echo.
echo 2. Open Kiosk View:
echo http://10.0.0.243:5173/kiosk
echo.
echo 3. Enjoy the public chore interface!
echo.
echo ========================================
pause