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
- Host: GitHub
- URL: https://github.com/codesyntax/django-uptime
- Owner: codesyntax
- License: mit
- Created: 2022-11-17T11:35:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-26T06:02:45.000Z (about 2 years ago)
- Last Synced: 2024-04-26T09:28:58.017Z (about 2 years ago)
- Language: Python
- Homepage:
- Size: 51.8 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README



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