ckanext-drupal8
Drupal8 user integration with CKAN. This extension allows CKAN to authenticate users against a Drupal 8 database, enabling seamless integration between Drupal 8 websites and CKAN data portals.
Requirements
This extension is designed to work with CKAN 2.7+ and Drupal 8.
Installation
To install ckanext-drupal8:
Activate your CKAN virtual environment, for example:
. /usr/lib/ckan/default/bin/activate
Install the ckanext-drupal8 Python package into your virtual environment:
pip install ckanext-drupal8
Add drupal8 to the ckan.plugins setting in your CKAN config file (by default the config file is located at /etc/ckan/default/production.ini).
Restart CKAN. For example if you’ve deployed CKAN with Apache on Ubuntu:
sudo service apache2 reload
Development Installation
To install ckanext-drupal8 for development, activate your CKAN virtualenv and do:
git clone https://github.com/vrk-kpa/ckanext-drupal8.git
cd ckanext-drupal8
python setup.py develop
pip install -r dev-requirements.txt
Running the Tests
To run the tests, do:
nosetests --nologcapture --with-pylons=test.ini
This extension is developed and maintained by the Finnish Digital Agency (DVV/vrk-kpa).