An open API service indexing awesome lists of open source software.

https://github.com/codesyntax/django-uptime

Editable non-cached monitorization path for Django
https://github.com/codesyntax/django-uptime

Last synced: about 1 year ago
JSON representation

Editable non-cached monitorization path for Django

Awesome Lists containing this project

README

          

![GitHub Workflow Status](https://img.shields.io/github/workflow/status/codesyntax/django-uptime/Django%20CI)
![PyPI](https://img.shields.io/pypi/v/django-uptime?color=blue)
![GitHub](https://img.shields.io/github/license/codesyntax/django-uptime)

# django-uptime
Editable non-cached monitorization path for Django

Installation
------------

To install ``django_uptime`` simply run:

```bash

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:

```python

INSTALLED_APPS = (
# other apps
"django_uptime",
)
```

2. Include the desired url path into your projects main ``urls.py`` file:

```python

from django.urls import include, path

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