2023-03-22 10:52:41 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Add ckanext-dcat settings to the CKAN config file
|
2024-02-21 09:16:47 +01:00
|
|
|
echo "[docker-entrypoint.03_setup_dcat] Loading ckanext-dcat settings in the CKAN config file"
|
2023-03-22 10:52:41 +01:00
|
|
|
ckan config-tool $CKAN_INI \
|
|
|
|
"ckanext.dcat.base_uri = $CKANEXT__DCAT__BASE_URI" \
|
2023-09-25 10:00:39 +02:00
|
|
|
"ckanext.dcat.catalog_endpoint = $CKANEXT__DCAT__DEFAULT_CATALOG_ENDPOINT" \
|
2023-03-22 10:52:41 +01:00
|
|
|
"ckanext.dcat.rdf.profiles = $CKANEXT__DCAT__RDF_PROFILES"
|