https://github.com/kingsdigitallab/django-activecollab-digger
Django application to integrate ActiveCollab issue reporting into projects
https://github.com/kingsdigitallab/django-activecollab-digger
activecollab django reusable
Last synced: 11 months ago
JSON representation
Django application to integrate ActiveCollab issue reporting into projects
- Host: GitHub
- URL: https://github.com/kingsdigitallab/django-activecollab-digger
- Owner: kingsdigitallab
- License: mit
- Created: 2017-06-19T09:50:49.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-12T15:12:17.000Z (almost 9 years ago)
- Last Synced: 2025-02-22T20:36:08.472Z (over 1 year ago)
- Topics: activecollab, django, reusable
- Language: HTML
- Size: 1.45 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES
- License: LICENSE
Awesome Lists containing this project
README
ActiveCollab Digger
===================
Django application to integrate ActiveCollab issue reporting into Django based projects.
To use:
#. ``pip install django-activecollab-digger``
#. add ``activecollab_digger`` to ``INSTALLED_APPS``
#. add ``url(r'^digger/', include('activecollab_digger.urls'))`` to ``urls.py``
#. add the settings::
# ActiveCollab API URL
AC_BASE_URL = 'https://app.activecollab.com/COMPANY_ID'
AC_API_URL = AC_BASE_URL + '/api/v1/'
# ActiveCollab API token
AC_TOKEN = ''
# ActiveCollab project ID
AC_PROJECT_ID = 1
# ActiveCollab user ID to create the issues
AC_USER = 1
#. in settings add the context processor ``activecollab_digger.context_processors.activecollab_digger`` to ``TEMPLATES['OPTIONS']['context_processors']``
Notes
-----
* The application needs to be behind authentication, having a ``LOGIN_URL`` setting should be enough in cases where the django admin is enabled
* In Python version lower than 2.7.9 ``pip install`` may not install all the dependencies, this is due to an issue with ``setuptools``. To work around it install/update the packages ``appdirs packaging setuptools six``.