Files
family-hub/SETUP_KIOSK.bat

36 lines
788 B
Batchfile

@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