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

View File

@@ -49,6 +49,7 @@ INSTALLED_APPS = [
"tailwind",
"theme",
"django_htmx",
"apps.health",
"apps.core",
"apps.blog",
"apps.authors",

View File

@@ -15,6 +15,7 @@ urlpatterns = [
path("cms/", include("wagtail.admin.urls")),
path("documents/", include("wagtail.documents.urls")),
path("comments/", include("apps.comments.urls")),
path("health/", include("apps.health.urls")),
path("newsletter/", include("apps.newsletter.urls")),
path("consent/", consent_view, name="consent"),
path("robots.txt", robots_txt, name="robots_txt"),