Metadata-Version: 2.1
Name: django_uptime
Version: 0.5
Summary: Editable non-cached monitorization path for Django
Home-page: https://github.com/codesyntax/django-uptime
Author: Urtzi
Author-email: uodriozola@codesyntax.eus
License: MIT license
Keywords: moritorization,uptime
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 4.0
Description-Content-Type: text/markdown
License-File: LICENSE

![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')),
      ...
   ]
```
