Django App to sync GitHub issues
Project description
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:
History
0.1.0 (2018-01-18)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-github-issues-0.1.0.tar.gz
(10.2 kB
view hashes)
Built Distribution
Close
Hashes for django-github-issues-0.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f29525ea0ecca3e7fb9196e850265b5f22dd4715520b4295b726ee4989b239c0 |
|
MD5 | 8036ed3352e9b56abba49044dfc1644b |
|
BLAKE2b-256 | 3d5f0ff75056db3725eb55c235dd4c08617d18579332b83324d69ae8cbae6d10 |
Close
Hashes for django_github_issues-0.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbd98858d33bb398935b77d638ce83a4a74122c7d96bda463d4423c8bc48a686 |
|
MD5 | f8957b9415b6a02045e5fac944c6b4bb |
|
BLAKE2b-256 | 2a5135a15720cbde54e7cd0b7bf6b2d47e16a4d390e0b337c900df6208970a16 |