Initial deploy setup
deploy / deploy (push) Canceled after 0s

This commit is contained in:
Jens
2026-07-21 14:00:00 +02:00
commit b8091e59bd
285 changed files with 27854 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from django.urls import path
from .views import SystemStatusView, TodayView, health_live, health_ready
urlpatterns = [
path("", TodayView.as_view(), name="today"),
path("system/", SystemStatusView.as_view(), name="system"),
path("health/live/", health_live, name="health-live"),
path("health/ready/", health_ready, name="health-ready"),
]