Skip to content

codesyntax/django-uptime

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Workflow Status PyPI GitHub

django-uptime

Editable non-cached monitorization path for Django

Installation

To install django_uptime simply run:

   pip install django-uptime

Configuration

We need to hook django-uptime into our project.

  1. Put django_uptime into your INSTALLED_APPS at settings module:
   INSTALLED_APPS = (
       # other apps
       "django_uptime",
   )
  1. Include the desired url path into your projects main urls.py file:
   from django.urls import include, path

   urlpatterns = [
      ...
      path('ok/', include('django_uptime.urls')),
      ...
   ]