此包最新版本(2.0.0-beta1)没有提供许可证信息。

为迁移到 Drupal 9+ 的 DKAN 网站提供升级路径

安装次数: 1,060

依赖项: 1

建议者: 0

安全性: 0

星标: 3

分支: 3

类型:drupal-profile

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

README

简版说明

  composer create-project eightyoptions/ekan_distribution:2.0.0 drupal

详版说明

  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

为访问项目开放数据文件设置 Nginx。

确保 nginx 可以提供 catalog.xml 文件,例如:

示例 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;
}