Self-hostable uptime monitor and status page on Django: HTTP checks, Lighthouse audits, SEO crawls, and email and Discord alerts.
djangodockerhandcodedpythonself-hostedsqlitestatus-pageuptime-monitoringvite
1from django.urls import path
2
3from . import views
4
5
6urlpatterns = [
7 path('changelog/', views.changelog, name='changelog'),
8 path('favicon.ico', views.favicon, name='favicon'),
9 path('robots.txt', views.robots, name='robots'),
10 path('sitemap.xml', views.sitemap, name='sitemap'),
11 path('', views.home, name='home'),
12]