Metadata-Version: 1.1
Name: django-moj-irat
Version: 0.3
Summary: Tools to support adding a Django-based service to Ministry of Justice's Incidence Response and Tuning
Home-page: https://github.com/ministryofjustice/django-moj-irat
Author: MoJ
Author-email: UNKNOWN
License: BSD License
Description: IRaT support for Django
        =======================
        
        A set of tools to make it easier to add a Django-based service to Ministry of Justice's Incidence Response and Tuning:
        
        * ping.json view
        * healthcheck.json view with extensible healthchecks
        
        healthcheck.json
        ----------------
        
        Django settings:
        
        .. code-block:: python
        
            HEALTHCHECKS = [
                'moj_irat.healthchecks.database_healthcheck',
                # override default list of healthcheck callables
            ]
            AUTODISCOVER_HEALTHCHECKS = True  # whether to autodiscover and load healthcheck.py from all installed apps
        
        Installation
        ------------
        
        At the moment, the only way to install the library is from github
        
        .. code-block:: bash
        
            pip install git+https://github.com/ministryofjustice/django-moj-irat.git
        
        Copyright
        ---------
        
        Copyright |copy| 2015 HM Government (Ministry of Justice Digital Services). See
        LICENSE for further details.
        
        .. |copy| unicode:: 0xA9 .. copyright symbol
        
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
