ckanext-klimakonform
Custom style extension for CKAN in KlimaKonform project.
Requirements
For example, you might want to mention here which versions of CKAN this extension works with.
Installation
To install ckanext-klimakonform:
Activate your CKAN virtual environment:
. /usr/lib/ckan/default/bin/activate
Install the ckanext-klimakonform Python package into your virtual environment:
cd /usr/lib/ckan/default/src
git clone https://github.com/GeoinformationSystems/ckanext-klimakonform.git
cd ckanext-klimakonform
python setup.py develop
pip install -r requirements.txt
Then create the necessary database tables for spatial search:
. /usr/lib/ckan/default/bin/activate
paster --plugin=ckanext-klimakonform klimakonform init -c /etc/ckan/default/ckan.ini
Add klimakonform to the end of ckan.plugins setting in your CKAN config file.
Restart CKAN.
Developer installation
To install ckanext-klimakonform for development, activate your CKAN virtualenv and do:
git clone https://github.com/GeoinformationSystems/ckanext-klimakonform
cd ckanext-klimakonform
python setup.py develop
pip install -r dev-requirements.txt