There is no license information available for the latest version (2.0.0-beta1) of this package.

Providing an upgrade path for DKAN sites moving to Drupal 9+

Installs: 1 021

Dependents: 1

Suggesters: 0

Security: 0

Stars: 3

Forks: 3

Type:drupal-profile

2.0.0-beta1 2023-10-16 02:08 UTC

README

The Short Version

  composer create-project eightyoptions/ekan_distribution:2.0.0 drupal

The Long Version

  composer create-project drupal/recommended-project:^10 drupal
  cd drupal
  composer config extra.enable-patching --json true
  composer config --no-plugins allow-plugins.cweagans/composer-patches true
  composer config minimum-stability dev
  composer require eightyoptions/ekan:^2.0

Setting up Nginx for access to Project Open Data files.

Ensure that nginx can serve up the catalog.xml file e.g.

Example nginx.conf

#Allow requests to /catalog.xml to hit our controller.
location = /catalog.xml {
    access_log off;
    log_not_found off;
    try_files $uri @drupal;
}