ckanext-jsondatastore
Proof-of-concept CKAN extension for using PostgreSQL JSON column types as a datastore.
Requirements
- SQLAlchemy 0.9.7
- Postgres 9.4
- CKAN master branch with upgraded requirements for sqlalchemy
Installation
To install ckanext-jsondatastore:
Activate your CKAN virtual environment:
. /usr/lib/ckan/default/bin/activate
Install the ckanext-jsondatastore Python package into your virtual environment:
pip install ckanext-jsondatastore
Add jsondatastore to the ckan.plugins setting in your CKAN config file.
Restart CKAN.
Development Installation
To install ckanext-jsondatastore for development, activate your CKAN virtualenv and do:
git clone https://github.com/joetsoi/ckanext-jsondatastore.git
cd ckanext-jsondatastore
python setup.py develop
pip install -r dev-requirements.txt