@echo off echo ๐Ÿงช Testing API endpoints... echo. echo ๐Ÿ“š Testing /api/books: curl -s http://localhost:8080/api/books | findstr "id" if %errorlevel% equ 0 ( echo โœ… API /api/books works! ) else ( echo โŒ API /api/books failed! ) echo. echo ๐Ÿ“„ Testing JSON file access: curl -s http://localhost:8080/src/chapters/sbs.json | findstr "name" if %errorlevel% equ 0 ( echo โœ… JSON file access works! ) else ( echo โŒ JSON file access failed! ) echo. echo ๐Ÿ  Testing homepage: curl -s http://localhost:8080/ | findstr "currentBookId" if %errorlevel% equ 0 ( echo โœ… Dynamic frontend loaded! ) else ( echo โŒ Frontend issue! ) pause