feat: add health monitoring endpoint
All checks were successful
CI / nightly-e2e (pull_request) Has been skipped
CI / deploy (pull_request) Has been skipped
CI / pr-e2e (pull_request) Successful in 1m38s
CI / ci (pull_request) Successful in 1m46s

This commit is contained in:
Codex_B
2026-03-06 15:46:08 +00:00
parent 59cc1c41a9
commit 10e39b8331
13 changed files with 462 additions and 2 deletions

7
apps/health/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from apps.health.views import health_view
urlpatterns = [
path("", health_view, name="health"),
]