Reputation: 3
I want to add extension found in giuhub (https://github.com/ckan/ckanext-pages) to ckan deployment (i've installed the package deployment of ckan)
can anyone instruct me how to install this extension ?
Thanks Arik
Upvotes: 0
Views: 336
Reputation: 6916
Check the documentation about installing extensions.
It basically boils down to these commands:
. /usr/lib/ckan/default/bin/activate # activate the virtualenv
cd /usr/lib/ckan/default/src/ckanext-pages
python setup.py develop
Then you need add the pages
to the ckan.plugins
in your ini file:
ckan.plugins = stats text_view recline_view pages
Upvotes: 1