Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Paged content config #143

Merged
merged 8 commits into from
Oct 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions inventory/vagrant/group_vars/webserver/drupal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ drupal_composer_dependencies:
- "drupal/content_browser:^1.0@alpha"
- "drupal/matomo:^1.7"
- "drupal/pdf:1.x-dev"
- "islandora/carapace:1.0.0"
- "drupal/admin_toolbar:^2.0"
- "drupal/rest_oai_pmh:^1.0"
- "islandora/carapace:dev-8.x-3.x"
- "islandora/islandora_defaults:dev-8.x-1.x"
drupal_composer_project_package: "islandora/drupal-project:8.7"
drupal_composer_project_options: "--prefer-dist --stability dev --no-interaction"
Expand Down Expand Up @@ -43,8 +45,12 @@ drupal_enable_modules:
- content_browser
- matomo
- pdf
- islandora_core_feature
- admin_toolbar
- islandora_defaults
- controlled_access_terms_defaults
- islandora_breadcrumbs
- islandora_iiif
- islandora_oaipmh
drupal_trusted_hosts:
- ^localhost$
- "{{ hostvars[groups['webserver'][0]].ansible_host }}"
Expand Down
11 changes: 7 additions & 4 deletions post-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@

tasks:

- name: Install islandora_defaults module
command: "{{ drush_path }} --root {{ drupal_core_path }} -y en islandora_defaults"

- name: Import feature
- name: Import features
command: "{{ drush_path }} --root {{ drupal_core_path }} -y fim --bundle=islandora islandora_defaults"

- name: Add admin to fedoraAdmin role
Expand All @@ -36,6 +33,12 @@
- name: Set media urls
command: "{{ drush_path }} --root {{ drupal_core_path }} -y cset --input-format=yaml media.settings standalone_url true"

- name: Set iiif url
command: "{{ drush_path }} --root {{ drupal_core_path }} -y cset --input-format=yaml islandora_iiif.settings iiif_server {{ openseadragon_iiiv_server }}"

- name: Set iiif manifest view
command: "{{ drush_path }} --root {{ drupal_core_path }} -y cset --input-format=yaml openseadragon.settings manifest_view iiif_manifest"

- name: Run migrations
command: "{{ drush_path }} --root {{ drupal_core_path }} -y -l localhost:{{ apache_listen_port }} --userid=1 mim --group=islandora"

Expand Down