mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:21:09 +02:00
🐛 fix(health-check): correct health endpoint paths
The backends exclude /health from the api/v1 prefix, so the correct endpoint is /health not /api/v1/health. Also added missing services (Contacts, Storage, Presi) and use /health for web apps. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
c4c00dc885
commit
fe8cb3cebb
1 changed files with 25 additions and 10 deletions
|
|
@ -191,28 +191,43 @@ fi
|
|||
|
||||
echo ""
|
||||
echo "Auth & Dashboard:"
|
||||
check_service "Auth API" "http://localhost:3001/api/v1/health"
|
||||
check_service "Dashboard Web" "http://localhost:5173/"
|
||||
check_service "Auth API" "http://localhost:3001/health"
|
||||
check_service "Dashboard Web" "http://localhost:5173/health"
|
||||
|
||||
echo ""
|
||||
echo "Chat:"
|
||||
check_service "Chat Backend" "http://localhost:3002/api/v1/health"
|
||||
check_service "Chat Web" "http://localhost:3000/"
|
||||
check_service "Chat Backend" "http://localhost:3002/health"
|
||||
check_service "Chat Web" "http://localhost:3000/health"
|
||||
|
||||
echo ""
|
||||
echo "Todo:"
|
||||
check_service "Todo Backend" "http://localhost:3018/api/v1/health"
|
||||
check_service "Todo Web" "http://localhost:5188/"
|
||||
check_service "Todo Backend" "http://localhost:3018/health"
|
||||
check_service "Todo Web" "http://localhost:5188/health"
|
||||
|
||||
echo ""
|
||||
echo "Calendar:"
|
||||
check_service "Calendar Backend" "http://localhost:3016/api/v1/health"
|
||||
check_service "Calendar Web" "http://localhost:5186/"
|
||||
check_service "Calendar Backend" "http://localhost:3016/health"
|
||||
check_service "Calendar Web" "http://localhost:5186/health"
|
||||
|
||||
echo ""
|
||||
echo "Clock:"
|
||||
check_service "Clock Backend" "http://localhost:3017/api/v1/health"
|
||||
check_service "Clock Web" "http://localhost:5187/"
|
||||
check_service "Clock Backend" "http://localhost:3017/health"
|
||||
check_service "Clock Web" "http://localhost:5187/health"
|
||||
|
||||
echo ""
|
||||
echo "Contacts:"
|
||||
check_service "Contacts Backend" "http://localhost:3015/health"
|
||||
check_service "Contacts Web" "http://localhost:5184/health"
|
||||
|
||||
echo ""
|
||||
echo "Storage:"
|
||||
check_service "Storage Backend" "http://localhost:3019/api/v1/health"
|
||||
check_service "Storage Web" "http://localhost:5185/health"
|
||||
|
||||
echo ""
|
||||
echo "Presi:"
|
||||
check_service "Presi Backend" "http://localhost:3008/api/health"
|
||||
check_service "Presi Web" "http://localhost:5178/health"
|
||||
|
||||
echo ""
|
||||
echo "Cloudflare Tunnel:"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue