django-github-issues 0.1.0

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangogithubissues 0.1.0

Django App to sync GitHub issues

Documentation
The full documentation is at https://django-github-issues.readthedocs.io.


Quickstart
Install Django GitHub Issues:
pip install django-github-issues
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
'rest_framework',
'django_filters',
'user_activities',
...
'github_issues',
...
)
Add Django GitHub Issues’s URL patterns:
from github_issues import urls as github_issues_urls


urlpatterns = [
...
url(r'^', include(github_issues_urls, namespace='github_issues')),
...
]
Add the following to settings.py:
GITHUB_API_URL=
GITHUB_ACCESS_TOKEN=


Features

Allows you to sync and track GitHub issues in your project.
Allows users who may not have a GitHub user name to post an issue to your project.



Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox


Credits
Tools used in rendering this package:

Cookiecutter
cookiecutter-djangopackage



History
0.1.0 (2018-01-18)

First release on PyPI.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.