From e1400fe7205598e200f3361cfd0910c7218316db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniele=20Vigan=C3=B2?= Date: Fri, 27 Oct 2023 22:26:24 +0200 Subject: [PATCH] Remove health page --- ram/ram/settings.py | 2 -- ram/ram/urls.py | 1 - 2 files changed, 3 deletions(-) diff --git a/ram/ram/settings.py b/ram/ram/settings.py index b1449ec..79d511c 100644 --- a/ram/ram/settings.py +++ b/ram/ram/settings.py @@ -41,8 +41,6 @@ INSTALLED_APPS = [ "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", - "health_check", - "health_check.db", "adminsortable2", "django_countries", "solo", diff --git a/ram/ram/urls.py b/ram/ram/urls.py index 3759359..ae2b14a 100644 --- a/ram/ram/urls.py +++ b/ram/ram/urls.py @@ -24,7 +24,6 @@ urlpatterns = [ path("", lambda r: redirect("portal/")), path("ckeditor/", include("ckeditor_uploader.urls")), path("portal/", include("portal.urls")), - path("ht/", include("health_check.urls")), path("admin/", admin.site.urls), path("api/v1/consist/", include("consist.urls")), path("api/v1/roster/", include("roster.urls")),