A simple reusable application for managing a small orgs governance in a Django application.
Project description
Django Is It Up
==================
Is it up is a fairly straight forward app that takes on the task of checking
web services to see if they are up and running. At the moment, the only goal
is to have it checking http services and sending out emails if an error code
is reached at a specified url.
Install
---------
```
pip install django-isitup
```
Else you could follow whatever procedure you use to install python packakges (easy_install, etc)
Configuration
--------------
Currently there is little to configure. The important part is to wire it up in your django project:
```
INSTALLED_APPS = (
...
'isitup',
...
)
```
In your urls:
```
urlpatterns += patterns('',
...
(r'^<your hook>/', include('isitup.urls')),
...
)
```
Templates (& URLs)
--------------------
All templates go in a 'isitup' directory in your TEMPLATE_DIR:
```
service_list.html (/)
service_create.html (/create/)
service_detail.html (/<slug>/)
service_edit.html (/<slug>/edit/)
```
==================
Is it up is a fairly straight forward app that takes on the task of checking
web services to see if they are up and running. At the moment, the only goal
is to have it checking http services and sending out emails if an error code
is reached at a specified url.
Install
---------
```
pip install django-isitup
```
Else you could follow whatever procedure you use to install python packakges (easy_install, etc)
Configuration
--------------
Currently there is little to configure. The important part is to wire it up in your django project:
```
INSTALLED_APPS = (
...
'isitup',
...
)
```
In your urls:
```
urlpatterns += patterns('',
...
(r'^<your hook>/', include('isitup.urls')),
...
)
```
Templates (& URLs)
--------------------
All templates go in a 'isitup' directory in your TEMPLATE_DIR:
```
service_list.html (/)
service_create.html (/create/)
service_detail.html (/<slug>/)
service_edit.html (/<slug>/edit/)
```
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-isitup-0.1.4.tar.gz
(8.8 kB
view details)
File details
Details for the file django-isitup-0.1.4.tar.gz
.
File metadata
- Download URL: django-isitup-0.1.4.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5c7b0794e23b8b71da2a162c61658d690edf14a469f4e2032040bd967623581 |
|
MD5 | fdaaa48fab80182a45f41cf5e0e2d1d1 |
|
BLAKE2b-256 | 3c47889f01fc40f6cef3dd237f03ec8493f21c975aeb9a7ed101088e388a5354 |