Skip to main content

Allows creating tickets in redmine instance

Project description

CKAN plugin to automatically create redmine issues when new dataset appears.

Requirements

  • Tested with CKAN 2.5.x branch

  • Requires celery

  • To work over SSL, requires pyOpenSSL, ndg-httpsclient and pyasn1

Installation

To install ckanext-redmine:

  1. Activate your CKAN virtual environment, for example:

    . /usr/lib/ckan/default/bin/activate
  2. Install the ckanext-redmine Python package into your virtual environment:

    pip install ckanext-redmine
  3. Add redmine to the ckan.plugins setting in your CKAN config file (by default the config file is located at /etc/ckan/default/production.ini).

  4. Restart CKAN. For example if you’ve deployed CKAN with Apache on Ubuntu:

    sudo service apache2 reload
  5. You will also need to set up celery. In a development environment this can be done with the following paster command from within your virtual environment:

    paster --plugin=ckan celeryd run -c /etc/ckan/default/development.ini

Config Settings

# The URL of the Redmine site
ckan.redmine.url = https://redmine.example.org/

# Redmine API key
ckan.redmine.apikey = CHANGE_THIS_OR_IT_WONT_WORK

# Redmine project
ckan.redmine.project = my_project

# The custom metadata flag used for storing redmine URL
# (optional, default: redmine_url).
ckan.redmine.flag = redmine_url

# A prefix to apply to the name of the dataset when creating an issue
# (optional, default: New dataset)
ckan.redmine.subject_prefix = New dataset

Development Installation

To install ckanext-redmine-autoissues for development, activate your CKAN virtualenv and do:

git clone https://github.com/sorki/ckanext-redmine-autoissues.git
cd ckanext-redmine-autoissues
python setup.py develop
pip install -r dev-requirements.txt

See also Installation

Running Celery in production

Place the provided ckan-celery.service file to /etc/systemd/system/:

cp ckan-celery.service /etc/systemd/system/
systemctl daemon-reload
systemctl start ckan-celery
# check with
systemctl status -l ckan-celery
# watch with
journalctl -f
# enable permanently with
systemctl enable ckan-celery

Registering ckanext-redmine-autoissues on PyPI

ckanext-redmine-autoissues should be availabe on PyPI as https://pypi.python.org/pypi/ckanext-redmine-autoissues. If that link doesn’t work, then you can register the project on PyPI for the first time by following these steps:

  1. Create a source distribution of the project:

    python setup.py sdist
  2. Register the project:

    python setup.py register
  3. Upload the source distribution to PyPI:

    python setup.py sdist upload
  4. Tag the first release of the project on GitHub with the version number from the setup.py file. For example if the version number in setup.py is 0.0.1 then do:

    git tag 0.0.1
    git push --tags

Releasing a New Version of ckanext-redis-autoissues

ckanext-redis-autoissues is availabe on PyPI as https://pypi.python.org/pypi/ckanext-redis-autoissues. To publish a new version to PyPI follow these steps:

  1. Update the version number in the setup.py file. See PEP 440 for how to choose version numbers.

  2. Create a source distribution of the new version:

    python setup.py sdist
  3. Upload the source distribution to PyPI:

    python setup.py sdist upload
  4. Tag the new release of the project on GitHub with the version number from the setup.py file. For example if the version number in setup.py is 0.0.2 then do:

    git tag 0.0.2
    git push --tags

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ckanext-redmine-autoissues-1.0.0.tar.gz (7.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page