Installation
To install ckanext-datadotworld:
Activate your CKAN virtual environment, for example:
. /usr/lib/ckan/default/bin/activate
If you already have an older version of this extension, remove it first:
pip uninstall -y ckanext-datadotworld
Install the ckanext-datadotworld Python package into your virtual environment:
pip install git+https://github.com/datadotworld/ckanext-datadotworld
Add
datadotworld
to theckan.plugins
setting in your CKAN config file (by default the config file is located at/etc/ckan/default/production.ini
).Create DB tables:
paster --plugin=ckanext-datadotworld datadotworld init -c /config.ini paster --plugin=ckanext-datadotworld datadotworld upgrade -c /config.ini
Start celery daemon either with suprevisor or using paster:
paster --plugin=ckan celeryd run -c /config.ini