Andrew Fletcher published: 23 August 2022 (updated) 25 August 2022 1 minute read
Location of the base templates
cd /usr/lib/ckan/default/src/ckan/ckan/templates
Whereas as the location of the plugin that displays the new template
cd /usr/lib/ckan/default/src/ckanext-{project}/ckanext/{project}/templates
To alter the home main page, edit the
cd /usr/lib/ckan/default/src/ckanext-{project}/ckanext/{project}/templates/home/index.html
Related articles
Andrew Fletcher
•
13 Oct 2024
How to set up a CKAN environment using Docker with Solr schema configuration
Setting up CKAN in a Docker environment can sometimes require some additional troubleshooting, particularly when working with Solr for search functionality. In this article, we’ll walk through how to set up CKAN 2.11 in a Docker environment with a specific focus on resolving issues related to Solr...
Andrew Fletcher
•
07 Oct 2024
Understanding and executing common Linux commands for CKAN administration
In this article, we will walk through a series of common Linux commands used for managing CKAN instances on an Ubuntu server with Nginx. We'll cover a variety of actions, explaining each command and its purpose. Whether you’re maintaining a CKAN instance, performing updates, or troubleshooting, this...
Andrew Fletcher
•
29 Sep 2023
Installing CKAN from package on Ubuntu 20.04
Install the CKAN packageBegin by cleaning up your server environment. Do this by updating Ubuntu’s package index:sudo apt updateNow you can install the packages that CKAN requires (including ‘git’, which will allow you to install CKAN extensions):sudo apt install -y libpq5 redis-server...