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
Built Distribution
File details
Details for the file django-github-issues-0.1.0.tar.gz
.
File metadata
- Download URL: django-github-issues-0.1.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f29525ea0ecca3e7fb9196e850265b5f22dd4715520b4295b726ee4989b239c0 |
|
MD5 | 8036ed3352e9b56abba49044dfc1644b |
|
BLAKE2b-256 | 3d5f0ff75056db3725eb55c235dd4c08617d18579332b83324d69ae8cbae6d10 |
Provenance
File details
Details for the file django_github_issues-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_github_issues-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbd98858d33bb398935b77d638ce83a4a74122c7d96bda463d4423c8bc48a686 |
|
MD5 | f8957b9415b6a02045e5fac944c6b4bb |
|
BLAKE2b-256 | 2a5135a15720cbde54e7cd0b7bf6b2d47e16a4d390e0b337c900df6208970a16 |