fix: update API URL paths in environment and health check scripts

This commit is contained in:
2025-11-01 14:18:25 -05:00
parent db908dc9ab
commit f1a7087779
5 changed files with 9 additions and 9 deletions

View File

@@ -33,7 +33,7 @@ wait_for_backend() {
# Esperar al backend
# En Docker, usamos el nombre del servicio. En desarrollo local, PUBLIC_API_URL apunta a localhost
BACKEND_HEALTH_URL="${BACKEND_INTERNAL_URL:-http://backend:8000}"
BACKEND_HEALTH_URL="${BACKEND_INTERNAL_URL:-http://backend:8000/api}"
wait_for_backend "${BACKEND_HEALTH_URL}"
echo "=========================================="