/ckan

CKAN is an open-source DMS (data management system) for powering data hubs and data portals. CKAN makes it easy to publish, share and use data. It powers datahub.io, catalog.data.gov and europeandataportal.eu/data/en/dataset among many other sites.

Primary LanguagePythonOtherNOASSERTION

CKAN for HazDat

CKAN for ds.hazdat.io

See the original/upstream CKAN README.rst.

Running CKAN

Get necessary software

First install the necessary software on your computer. Open a terminal and paste:

pip install awscli --upgrade --user

This will install awscli which is needed to download files from AWS. Try running it:

aws

If this doesn't work then you may need to edit first add $HOME/.local/bin to your path:

export PATH=$PATH:$HOME/.local/bin
aws

Next, install Docker. Here are instructions on how to Install Docker for Mac. Once Docker is installed run it and follow the prompts, however there is no need to log in or create a Docker Id. Afterwards, check that it works by running the following terminal command:

docker version

Set-up AWS credentials

In order to download the HazDat CKAN container AWS credentials are needed.

Now, in the terminal type:

aws configure

Contact me to get credentials. Set the default region to be ap-southeast-1.

Download and run CKAN Docker containers

First log in to the AWS container service:

aws ecr get-login --no-include-email

This will print a lot of stuff, copy it and paste it back as a command, for example:

docker login -u AWS -p <stuff> https://994001419236.dkr.ecr.ap-southeast-1.amazonaws.com

Next get the the CKAN setup configuration:

cd $HOME
git clone https://github.com/HazDat/ckan.git
cd ckan/contrib/docker

Set up the default configs:

ln -s env.template .env

Download and run the CKAN site with:

docker-compose pull
docker-compose up -d

This downloads a lot of stuff and will take a while, once it's done check that all containers are running with:

docker ps

There should be 5 containers all up. Now see whether the CKAN site is running by visiting: http://localhost:5000.

Customising CKAN templates

First it is worth looking at the documentation for creating CKAN themes. In particular this page on customising the CSS.

We need to get modify to the HazDat theme files within the running CKAN container. The easiest cross-platform way of doing this is just to copy them in. First get the HazDat theme files:

cd $HOME
git clone https://github.com/HazDat/ckanext-hazdat_theme.git

Get the CONTAINER ID for the CKAN container with:

docker ps

It is in the first column and the row whose name is 'ckan'.

Now copy the theme files in with:

docker cp ckanext-hazdat_theme <CONTAINER ID>:/home/extensions/

All of the files needed to create/modify the HazDat are in $HOME/ckanext-hazdat_theme/ckanext/hazdat_theme. Any changes to CSS or HTML files in here should be immediately visible after copying them over to the container and reloading development URL http://localhost:5000.

For example edit $HOME/ckanext-hazdat_theme/ckanext/hazdat_theme/public/hazdat_theme.css and change the masthead colour, copy the files over and reload the site to see the effect.

Appendix A: directly accessing HazDat container theme files on Linux

Set up an alias to the directory where the templates files are kept.

export VOL_CKAN_EXT=$(docker volume inspect docker_ckan_extensions | jq -r -c '.[] | .Mountpoint')
echo $VOL_CKAN_EXT

Fix up permissions so that we can easily read and write the files in $VOL_CKAN_EXT. This can get a little tricky!

Now use bindfs to make the templates directory accessible:

cd $HOME/ckan/contrib
mkdir ckan_extensions
sudo chown -R $(whoami):docker $VOL_CKAN_EXT
sudo bindfs --map=900/$(whoami) $VOL_CKAN_EXT ckan_extensions