forked from ckan/ckan-docker
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from mjanez/ckan-2.10.5
Ckan 2.10.5
- Loading branch information
Showing
8 changed files
with
62 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -174,7 +174,7 @@ CKAN__LOCALE_ORDER="en es pt_BR ja it cs_CZ ca fr el sv sr sr@latin no sk fi ru | |
CKAN__LOCALES_OFFERED="en es pt_BR ja it cs_CZ ca fr el sv sr sr@latin no sk fi ru de pl nl bg ko_KR hu sa sl lv" | ||
|
||
# Extensions | ||
CKAN__PLUGINS="activity stats image_view video_view audio_view webpage_view text_view datatables_view resourcedictionary datastore xloader spatial_metadata spatial_query spatial_harvest_metadata_api waf_harvester doc_harvester resource_proxy geo_view geojson_view wmts_view shp_view dcat dcat_rdf_harvester dcat_json_harvester dcat_json_interface schemingdcat schemingdcat_datasets schemingdcat_groups schemingdcat_organizations schemingdcat_ckan_harvester schemingdcat_xls_harvester schemingdcat_postgres_harvester schemingdcat_csw_harvester schemingdcat_open_data_statistics harvest pdf_view pages fluent openapi envvars" | ||
CKAN__PLUGINS="activity stats image_view video_view audio_view webpage_view text_view datatables_view resourcedictionary datastore xloader spatial_metadata spatial_query spatial_harvest_metadata_api waf_harvester doc_harvester resource_proxy geo_view geojson_view wmts_view shp_view dcat dcat_rdf_harvester dcat_json_harvester dcat_json_interface schemingdcat schemingdcat_datasets schemingdcat_groups schemingdcat_organizations schemingdcat_ckan_harvester schemingdcat_xls_harvester schemingdcat_postgres_harvester schemingdcat_csw_harvester schemingdcat_open_data_statistics harvest pdf_view pages fluent openapi envvars" | ||
|
||
# ckanext-harvest | ||
CKAN__HARVEST__MQ__TYPE=redis | ||
|
@@ -186,6 +186,10 @@ CKAN__HARVEST__LOG_TIMEFRAME=40 | |
|
||
# ckanext-xloader ckanext.xloader.jobs_db.uri | ||
CKANEXT__XLOADER__JOBS_DB__URI=postgresql://${CKAN_DB_USER}:${CKAN_DB_PASSWORD}@${POSTGRES_HOST}/${CKAN_DB} | ||
#### Enable or disable SSL certificate verification. Setting verify to False should only be enabled during local development or testing (self-signed certificate). | ||
CKANEXT__XLOADER__SSL_VERIFY=True | ||
#### Maximum content length for uploaded files (in bytes). Default 1000000000 (1GB) | ||
CKANEXT__XLOADER__MAX_CONTENT_LENGTH=1000000000 | ||
|
||
# ckanext-dcat | ||
CKANEXT__DCAT__BASE_URI=${CKAN_URL} | ||
|
@@ -230,6 +234,15 @@ CKANEXT__SCHEMINGDCAT__OPEN_DATA_STATISTICS_THEMES=True | |
# Private fields to be hidden in the API responses | ||
CKANEXT__SCHEMINGDCAT__API__PRIVATE_FIELDS="private_name private_email" | ||
CKANEXT__OPENAPI__ENDPOINTS='[{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/datastore.yaml","name":"datastore","title":{"en":"CKAN - Datastore API","es":"Portal de datos abiertos de CKAN - API Datastore"},"description":{"en":"This API provides live access to the Datastore portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de Datastore del Portal de Datos Abiertos CKAN."}},{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/ckan.yaml","name":"ckan","title":{"en":"CKAN Open Data Portal - CKAN API","es":"Portal de datos abiertos de CKAN - API CKAN"},"description":{"en":"This API provides live access to the CKAN portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de CKAN del Portal de Datos Abiertos CKAN."}}]' | ||
## DCAT-AP Metadata enhancements | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__NAME="Organismo publicador del Catálogo" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__IDENTIFIER="http://datos.gob.es/recurso/sector-publico/org/Organismo/EA0000000" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__EMAIL="[email protected]" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__TYPE="http://purl.org/adms/publishertype/NonProfitOrganisation" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__URL="https://organismo.example.org/" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__TITLE="Datastore API service" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__DESCRIPTION="This API provides live access to the Datastore portion of the Open Data Portal. Serve data resources in a machine-readable format." | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__ENDPOINT_DESCRIPTION="{ckan_site_url}/openapi/datastore/" | ||
|
||
# ckanext-pages | ||
CKANEXT__PAGES__ALOW_HTML=False | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ COPY req_fixes req_fixes | |
## PDFView - 0.0.8 ## | ||
## Fluent - v1.0.1 (mjanez/Forked stable version) ## | ||
## OpenAPI - v1.0.0 (mjanez stable version) ## | ||
## Scheming DCAT - v4.3.0 (mjanez/GeoDCAT-AP/NTI-RISP extended version) ## | ||
## Scheming DCAT - v4.4.0 (mjanez/GeoDCAT-AP/NTI-RISP extended version) ## | ||
RUN echo ${TZ} > /etc/timezone && \ | ||
Check failure on line 27 in ckan/Dockerfile GitHub Actions / runner/build-docker-push:master
Check failure on line 27 in ckan/Dockerfile GitHub Actions / runner/build-docker-push:master
Check failure on line 27 in ckan/Dockerfile GitHub Actions / runner/build-docker-push:master
|
||
if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then cp /usr/share/zoneinfo/${TZ} /etc/localtime; fi && \ | ||
# Install patch utility | ||
|
@@ -60,7 +60,7 @@ RUN echo ${TZ} > /etc/timezone && \ | |
echo "mjanez/ckanext-openapi" && \ | ||
pip3 install --no-cache-dir -e git+https://github.com/mjanez/[email protected]#egg=ckanext-openapi && \ | ||
echo "mjanez/ckanext-schemingdcat" && \ | ||
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-schemingdcat.git@v4.3.0#egg=ckanext_schemingdcat && \ | ||
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-schemingdcat.git@v4.4.0#egg=ckanext_schemingdcat && \ | ||
pip3 install --no-cache-dir -r ${APP_DIR}/src/ckanext-schemingdcat/requirements.txt && \ | ||
# Remove system cache | ||
apt-get clean && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -177,7 +177,7 @@ CKAN__LOCALE_ORDER="en es pt_BR ja it cs_CZ ca fr el sv sr sr@latin no sk fi ru | |
CKAN__LOCALES_OFFERED="en es pt_BR ja it cs_CZ ca fr el sv sr sr@latin no sk fi ru de pl nl bg ko_KR hu sa sl lv" | ||
|
||
# Extensions | ||
CKAN__PLUGINS="activity stats image_view video_view audio_view webpage_view text_view datatables_view resourcedictionary datastore xloader spatial_metadata spatial_query spatial_harvest_metadata_api waf_harvester doc_harvester resource_proxy geo_view geojson_view wmts_view shp_view dcat dcat_rdf_harvester dcat_json_harvester dcat_json_interface schemingdcat schemingdcat_datasets schemingdcat_groups schemingdcat_organizations schemingdcat_ckan_harvester schemingdcat_xls_harvester schemingdcat_postgres_harvester schemingdcat_csw_harvester schemingdcat_open_data_statistics harvest pdf_view pages fluent openapi envvars" | ||
CKAN__PLUGINS="activity stats image_view video_view audio_view webpage_view text_view datatables_view resourcedictionary datastore xloader spatial_metadata spatial_query spatial_harvest_metadata_api waf_harvester doc_harvester resource_proxy geo_view geojson_view wmts_view shp_view dcat dcat_rdf_harvester dcat_json_harvester dcat_json_interface schemingdcat schemingdcat_datasets schemingdcat_groups schemingdcat_organizations schemingdcat_ckan_harvester schemingdcat_xls_harvester schemingdcat_postgres_harvester schemingdcat_csw_harvester schemingdcat_open_data_statistics harvest pdf_view pages fluent openapi envvars" | ||
|
||
# ckanext-harvest | ||
CKAN__HARVEST__MQ__TYPE=redis | ||
|
@@ -189,6 +189,10 @@ CKAN__HARVEST__LOG_TIMEFRAME=40 | |
|
||
# ckanext-xloader ckanext.xloader.jobs_db.uri | ||
CKANEXT__XLOADER__JOBS_DB__URI=postgresql://${CKAN_DB_USER}:${CKAN_DB_PASSWORD}@${POSTGRES_HOST}/${CKAN_DB} | ||
#### Enable or disable SSL certificate verification. Setting verify to False should only be enabled during local development or testing (self-signed certificate). | ||
CKANEXT__XLOADER__SSL_VERIFY=True | ||
#### Maximum content length for uploaded files (in bytes). Default 1000000000 (1GB) | ||
CKANEXT__XLOADER__MAX_CONTENT_LENGTH=1000000000 | ||
|
||
# ckanext-dcat | ||
CKANEXT__DCAT__BASE_URI=${CKAN_URL} | ||
|
@@ -233,6 +237,15 @@ CKANEXT__SCHEMINGDCAT__OPEN_DATA_STATISTICS_THEMES=True | |
# Private fields to be hidden in the API responses | ||
CKANEXT__SCHEMINGDCAT__API__PRIVATE_FIELDS="private_name private_email" | ||
CKANEXT__OPENAPI__ENDPOINTS='[{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/datastore.yaml","name":"datastore","title":{"en":"CKAN - Datastore API","es":"Portal de datos abiertos de CKAN - API Datastore"},"description":{"en":"This API provides live access to the Datastore portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de Datastore del Portal de Datos Abiertos CKAN."}},{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/ckan.yaml","name":"ckan","title":{"en":"CKAN Open Data Portal - CKAN API","es":"Portal de datos abiertos de CKAN - API CKAN"},"description":{"en":"This API provides live access to the CKAN portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de CKAN del Portal de Datos Abiertos CKAN."}}]' | ||
## DCAT-AP Metadata enhancements | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__NAME="Organismo publicador del Catálogo" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__IDENTIFIER="http://datos.gob.es/recurso/sector-publico/org/Organismo/EA0000000" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__EMAIL="[email protected]" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__TYPE="http://purl.org/adms/publishertype/NonProfitOrganisation" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__URL="https://organismo.example.org/" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__TITLE="Datastore API service" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__DESCRIPTION="This API provides live access to the Datastore portion of the Open Data Portal. Serve data resources in a machine-readable format." | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__ENDPOINT_DESCRIPTION="{ckan_site_url}/openapi/datastore/" | ||
|
||
# ckanext-pages | ||
CKANEXT__PAGES__ALOW_HTML=False | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -175,7 +175,7 @@ CKAN__LOCALE_ORDER="en es pt_BR ja it cs_CZ ca fr el sv sr sr@latin no sk fi ru | |
CKAN__LOCALES_OFFERED="en es pt_BR ja it cs_CZ ca fr el sv sr sr@latin no sk fi ru de pl nl bg ko_KR hu sa sl lv" | ||
|
||
# Extensions | ||
CKAN__PLUGINS="activity stats image_view video_view audio_view webpage_view text_view datatables_view resourcedictionary datastore xloader spatial_metadata spatial_query spatial_harvest_metadata_api waf_harvester doc_harvester resource_proxy geo_view geojson_view wmts_view shp_view dcat dcat_rdf_harvester dcat_json_harvester dcat_json_interface schemingdcat schemingdcat_datasets schemingdcat_groups schemingdcat_organizations schemingdcat_ckan_harvester schemingdcat_xls_harvester schemingdcat_postgres_harvester schemingdcat_csw_harvester schemingdcat_open_data_statistics harvest pdf_view pages fluent openapi envvars" | ||
CKAN__PLUGINS="activity stats image_view video_view audio_view webpage_view text_view datatables_view resourcedictionary datastore xloader spatial_metadata spatial_query spatial_harvest_metadata_api waf_harvester doc_harvester resource_proxy geo_view geojson_view wmts_view shp_view dcat dcat_rdf_harvester dcat_json_harvester dcat_json_interface schemingdcat schemingdcat_datasets schemingdcat_groups schemingdcat_organizations schemingdcat_ckan_harvester schemingdcat_xls_harvester schemingdcat_postgres_harvester schemingdcat_csw_harvester schemingdcat_open_data_statistics harvest pdf_view pages fluent openapi envvars" | ||
|
||
# ckanext-harvest | ||
CKAN__HARVEST__MQ__TYPE=redis | ||
|
@@ -187,6 +187,10 @@ CKAN__HARVEST__LOG_TIMEFRAME=40 | |
|
||
# ckanext-xloader ckanext.xloader.jobs_db.uri | ||
CKANEXT__XLOADER__JOBS_DB__URI=postgresql://${CKAN_DB_USER}:${CKAN_DB_PASSWORD}@${POSTGRES_HOST}/${CKAN_DB} | ||
#### Enable or disable SSL certificate verification. Setting verify to False should only be enabled during local development or testing (self-signed certificate). | ||
CKANEXT__XLOADER__SSL_VERIFY=True | ||
#### Maximum content length for uploaded files (in bytes). Default 1000000000 (1GB) | ||
CKANEXT__XLOADER__MAX_CONTENT_LENGTH=1000000000 | ||
|
||
# ckanext-dcat | ||
CKANEXT__DCAT__BASE_URI=${CKAN_URL} | ||
|
@@ -231,6 +235,15 @@ CKANEXT__SCHEMINGDCAT__OPEN_DATA_STATISTICS_THEMES=True | |
# Private fields to be hidden in the API responses | ||
CKANEXT__SCHEMINGDCAT__API__PRIVATE_FIELDS="private_name private_email" | ||
CKANEXT__OPENAPI__ENDPOINTS='[{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/datastore.yaml","name":"datastore","title":{"en":"CKAN - Datastore API","es":"Portal de datos abiertos de CKAN - API Datastore"},"description":{"en":"This API provides live access to the Datastore portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de Datastore del Portal de Datos Abiertos CKAN."}},{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/ckan.yaml","name":"ckan","title":{"en":"CKAN Open Data Portal - CKAN API","es":"Portal de datos abiertos de CKAN - API CKAN"},"description":{"en":"This API provides live access to the CKAN portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de CKAN del Portal de Datos Abiertos CKAN."}}]' | ||
## DCAT-AP Metadata enhancements | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__NAME="Organismo publicador del Catálogo" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__IDENTIFIER="http://datos.gob.es/recurso/sector-publico/org/Organismo/EA0000000" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__EMAIL="[email protected]" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__TYPE="http://purl.org/adms/publishertype/NonProfitOrganisation" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__URL="https://organismo.example.org/" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__TITLE="Datastore API service" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__DESCRIPTION="This API provides live access to the Datastore portion of the Open Data Portal. Serve data resources in a machine-readable format." | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__ENDPOINT_DESCRIPTION="{ckan_site_url}/openapi/datastore/" | ||
|
||
# ckanext-pages | ||
CKANEXT__PAGES__ALOW_HTML=False | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -175,7 +175,7 @@ CKAN__LOCALE_ORDER="es en pt_BR ja it cs_CZ ca fr el sv sr sr@latin no sk fi ru | |
CKAN__LOCALES_OFFERED="es en pt_BR ja it cs_CZ ca fr el sv sr sr@latin no sk fi ru de pl nl bg ko_KR hu sa sl lv" | ||
|
||
# Extensions | ||
CKAN__PLUGINS="activity stats image_view video_view audio_view webpage_view text_view datatables_view resourcedictionary datastore xloader spatial_metadata spatial_query spatial_harvest_metadata_api waf_harvester doc_harvester resource_proxy geo_view geojson_view wmts_view shp_view dcat dcat_rdf_harvester dcat_json_harvester dcat_json_interface schemingdcat schemingdcat_datasets schemingdcat_groups schemingdcat_organizations schemingdcat_ckan_harvester schemingdcat_xls_harvester schemingdcat_postgres_harvester schemingdcat_csw_harvester schemingdcat_open_data_statistics harvest pdf_view pages fluent openapi envvars" | ||
CKAN__PLUGINS="activity stats image_view video_view audio_view webpage_view text_view datatables_view resourcedictionary datastore xloader spatial_metadata spatial_query spatial_harvest_metadata_api waf_harvester doc_harvester resource_proxy geo_view geojson_view wmts_view shp_view dcat dcat_rdf_harvester dcat_json_harvester dcat_json_interface schemingdcat schemingdcat_datasets schemingdcat_groups schemingdcat_organizations schemingdcat_ckan_harvester schemingdcat_xls_harvester schemingdcat_postgres_harvester schemingdcat_csw_harvester schemingdcat_open_data_statistics harvest pdf_view pages fluent openapi envvars" | ||
|
||
# ckanext-harvest | ||
CKAN__HARVEST__MQ__TYPE=redis | ||
|
@@ -187,6 +187,10 @@ CKAN__HARVEST__LOG_TIMEFRAME=40 | |
|
||
# ckanext-xloader ckanext.xloader.jobs_db.uri | ||
CKANEXT__XLOADER__JOBS_DB__URI=postgresql://${CKAN_DB_USER}:${CKAN_DB_PASSWORD}@${POSTGRES_HOST}/${CKAN_DB} | ||
#### Enable or disable SSL certificate verification. Setting verify to False should only be enabled during local development or testing (self-signed certificate). | ||
CKANEXT__XLOADER__SSL_VERIFY=True | ||
#### Maximum content length for uploaded files (in bytes). Default 1000000000 (1GB) | ||
CKANEXT__XLOADER__MAX_CONTENT_LENGTH=1000000000 | ||
|
||
# ckanext-dcat | ||
CKANEXT__DCAT__BASE_URI=${CKAN_URL} | ||
|
@@ -230,7 +234,16 @@ CKANEXT__SCHEMINGDCAT__OPEN_DATA_STATISTICS=True | |
CKANEXT__SCHEMINGDCAT__OPEN_DATA_STATISTICS_THEMES=True | ||
# Private fields to be hidden in the API responses | ||
CKANEXT__SCHEMINGDCAT__API__PRIVATE_FIELDS="private_name private_email" | ||
CKANEXT__OPENAPI__ENDPOINTS='[{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/datastore.yaml","name":"datastore","title":{"en":"CKAN - Datastore API","es":"Portal de datos abiertos de CKAN - API Datastore"},"description":{"en":"This API provides live access to the Datastore portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de Datastore del Portal de Datos Abiertos CKAN."}},{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/ckan.yaml","name":"ckan","title":{"en":"CKAN Open Data Portal - CKAN API (ES)","es":"Portal de datos abiertos de CKAN - API CKAN"},"description":{"en":"This API provides live access to the CKAN portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de CKAN del Portal de Datos Abiertos CKAN."}}]' | ||
CKANEXT__OPENAPI__ENDPOINTS='[{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/datastore.yaml","name":"datastore","title":{"en":"CKAN - Datastore API","es":"Portal de datos abiertos de CKAN - API Datastore"},"description":{"en":"This API provides live access to the Datastore portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de Datastore del Portal de Datos Abiertos CKAN."}},{"url":"https://raw.githubusercontent.com/mjanez/ckanext-openapi/refs/heads/develop/ckanext/openapi/public/static/openapi/ckan.yaml","name":"ckan","title":{"en":"CKAN Open Data Portal - CKAN API","es":"Portal de datos abiertos de CKAN - API CKAN"},"description":{"en":"This API provides live access to the CKAN portion of the CKAN Open Data Portal.","es":"Esta API proporciona acceso en tiempo real a la parte de CKAN del Portal de Datos Abiertos CKAN."}}]' | ||
## DCAT-AP Metadata enhancements | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__NAME="Organismo publicador del Catálogo" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__IDENTIFIER="http://datos.gob.es/recurso/sector-publico/org/Organismo/EA0000000" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__EMAIL="[email protected]" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__TYPE="http://purl.org/adms/publishertype/NonProfitOrganisation" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__PUBLISHER__URL="https://organismo.example.org/" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__TITLE="Datastore API service" | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__DESCRIPTION="This API provides live access to the Datastore portion of the Open Data Portal. Serve data resources in a machine-readable format." | ||
CKANEXT__SCHEMINGDCAT__DCAT_AP__DATASTORE_DATASERVICE__ENDPOINT_DESCRIPTION="{ckan_site_url}/openapi/datastore/" | ||
|
||
# ckanext-pages | ||
CKANEXT__PAGES__ALOW_HTML=False | ||
|