Metadata-Version: 1.1
Name: django-github-log
Version: 0.1.3
Summary: Django log handler to create issue on github automatically
Home-page: UNKNOWN
Author: Seungyeon Joshua Kim(Acuros)
Author-email: acuroskr@gmail.com
License: MIT License
Description: django-github-log
        =================
        
        Create an issue group by error on github when django raises error
        
        Installation
        ------------
        
        Add following settings dictionary in your settings.py (LABELS is
        optional)
        
        .. code:: python
        
            GITHUB_LOG_SETTINGS = {
                'USER': 'REPOSITORY-OWNER',
                'REPO': 'REPOSITORY-NAME',
                'TOKEN': 'GITHUB-API-TOKEN',
                'LABELS': [
                    'priority:normal',
                    'type:error',
                    ...
                ]
            }
        
        Add "github\_log" in INSTALLED\_APPS
        
        Add logging handler in settings.Logging['handlers']
        
        .. code:: python
        
            'github': {
                'level': 'ERROR',
                'class': 'github_log.log.GitHubIssueHandler'
            },
        
        Finally, ``python manage.py syncdb``
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
