diff --git a/services/backend/api/urls.py b/services/backend/api/urls.py index 01a807c..c6400c9 100644 --- a/services/backend/api/urls.py +++ b/services/backend/api/urls.py @@ -6,5 +6,5 @@ from api.v1.router import router as api_v1_router urlpatterns = [ path("api/v1/", api_v1_router.urls), # Health endpoint - path("health", MainView.as_view(), name="health_check_home"), + path("api/health", MainView.as_view(), name="health_check_home"), ]