Metadata-Version: 1.1
Name: django-github-hook
Version: 0.1.0
Summary: Django-powered GitHub (& Bitbucket) web hooks
Home-page: UNKNOWN
Author: S. Andrew Sheppard, Hugo Geoffroy
Author-email: andrew@wq.io
License: UNKNOWN
Description: github\_hook
        ============
        
        Simple continuous integration for Django developers, taking the form of
        a Django app for managing GitHub (or BitBucket) post receive hooks.
        
        Usage
        -----
        
        -  ``pip install django-github-hook``
        -  Add ``github_hook`` to ``INSTALLED_APPS`` in your settings.py
        -  ``./manage.py migrate`` (or ``./manage.py syncdb``)
        -  Add e.g. ``url(r'^hook/', include('github_hook.urls'))`` to your
           urls.py ``urlpatterns``
        -  Log into the Django admin console
        -  Configure your hook with the folowing fields:
        
           -  *Name*: Hook identifier
           -  *User*: Repo username
           -  *Repo*: Repo name
           -  *Path*: Absolute path to script to execute
        
        -  Go to your repo's "Service Hooks" settings on GitHub (or BitBucket) and add a
           WebHook/POST URL:
        
           -  http[s]://[yourwebsite]/hook
           -  The repo information will be read from the JSON payload
        
        -  Alternatively, you can specify a specific hook by name:
        
           -  http[s]://[yourwebsite]/hook/name
        
        
        
Platform: any
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
