Metadata-Version: 1.1
Name: django_site_health
Version: 0.1.2
Summary: A simple Django app to provide a health page for your site.
Home-page: http://www.agogo.com/
Author: Damian Hites
Author-email: damian@agogo.com
License: BSD License
Description: # django-site-health
        Configurable health endpoint for applications hosted in ElasticBeanstalk.
        
        ## Installation
        
        * Download this repo locally
        
        * Run the install
        
        ```bash
        python setup.py install
        ```
        
        ## Quick Start
        
        * Add `django-site-health` to your `INSTALLED_APPS`
        
        ```python
        INSTALLED_APPS = [
            ...
            'django_site_health',
        ]
        ```
        
        * Include the `django-health` URLconf in your project urls.py
        
        ```python
            url(r'^health/', include('django_site_health.urls')),
        ```
        
        * Test that you can access the `/health/` on the dev server
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
