Metadata-Version: 1.1
Name: leonardo-module-sentry
Version: 0.0.1
Summary: Sentry Error Page for Leonardo
Home-page: https://github.com/django-leonardo/leonardo-module-sentry.git
Author: Michael Kuty
Author-email: kutymichael@gmail.com
License: UNKNOWN
Description: ======================
        Leonardo Sentry Module
        ======================
        
        Provide end-user friendly 500 Error handler for Leonardo Sites
        
        .. contents::
            :local:
        
        Installation
        ------------
        
        .. code-block:: bash
        
            pip install leonardo_module_sentry
        
        or as leonardo bundle
        
        .. code-block:: bash
        
            pip install django-leonardo["sentry"]
        
        Add ``leonardo_module_sentry`` to APPS list, in the ``local_settings.py``::
        
            APPS = [
            	...
                'leonardo_module_sentry'
            	...
            ]
        
        Load new template to db
        
        .. code-block:: bash
        
        	python manage.py sync_common
        
        Add ``RAVEN_CONFIG`` into your ``settings.py``::
        
            RAVEN_CONFIG = {
                'dsn': 'http://public:secret@example.com/1',
            }
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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 :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
