-
Notifications
You must be signed in to change notification settings - Fork 53
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
install for content-modeing-overhaul branches of everything #66
Changes from 1 commit
9a75217
56677c9
ed8f7fd
6fcc4c3
fe0b52a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,13 +8,15 @@ drupal_composer_dependencies: | |
- "drupal/devel:^1.0@beta" | ||
- "drupal/rdfui:1.x-dev" | ||
- "drupal/restui:^1.13" | ||
- "drupal/media_entity:^1.6" | ||
- "drupal/media_entity_image:^1.2" | ||
- "drupal/search_api_solr:1.0.0" | ||
- "drupal/facets:1.x-dev" | ||
- "islandora/carapace:dev-8.x-1.x" | ||
- "islandora/islandora_image:dev-8.x-1.x" | ||
drupal_composer_project_package: "islandora/drupal-project:8.4" | ||
- "drupal/jwt:1.0.0-alpha6" | ||
# Comment this back in once code gets merged and is available on packagist | ||
# - "islandora/islandora:dev-8.x-1.x" | ||
# - "islandora/openseadragon:dev-8.x-1.x" | ||
# - "islandora/islandora_image:dev-8.x-1.x" | ||
drupal_composer_project_package: "islandora/drupal-project:8.5" | ||
drupal_composer_project_options: "--prefer-dist --stability dev --no-interaction" | ||
drupal_core_path: "{{ drupal_composer_install_dir }}/web" | ||
drupal_db_user: drupal8 | ||
|
@@ -34,14 +36,16 @@ drupal_enable_modules: | |
- rest | ||
- simpletest | ||
- restui | ||
- media_entity | ||
- media_entity_image | ||
- devel | ||
- search_api | ||
- islandora_image | ||
- search_api_solr | ||
- search_api_solr_defaults | ||
- facets | ||
- jwt | ||
# Comment this back in once code gets merged and is available on packagist | ||
# - islandora_feature | ||
# - islandora_openseadragon | ||
# - islandora_image_feature | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto |
||
drupal_trusted_hosts: | ||
- ^localhost$ | ||
drupal_trusted_hosts_file: "{{ drupal_core_path }}/sites/default/settings.php" | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,20 +61,20 @@ | |
owner: "{{ webserver_app_user }}" | ||
group: "{{ webserver_app_user }}" | ||
|
||
- name: Copy drupal config | ||
copy: | ||
src: "." | ||
dest: "{{ webserver_app_drupal_config_path }}/" | ||
mode: "0644" | ||
owner: "{{ webserver_app_user }}" | ||
group: "{{ webserver_app_user }}" | ||
register: drupal_config | ||
#- name: Import features | ||
# command: "{{ drush_path }} -y fim --bundle=islandora islandora_feature,islandora_openseadragon,islandora_image_feature" | ||
# args: | ||
# chdir: "{{ drupal_core_path }}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should/Can this be re-enabled? |
||
|
||
- name: Install config | ||
command: "{{ drush_path }} config-import -y --partial --source={{ webserver_app_drupal_config_path }}" | ||
args: | ||
chdir: "{{ drupal_core_path }}" | ||
when: drupal_config.changed is defined and drupal_config.changed | ||
#- name: Run tag migrations | ||
# command: "{{ drush_path }} -y mim --group=islandora" | ||
# args: | ||
# chdir: "{{ drupal_core_path }}" | ||
|
||
#- name: Index tags | ||
# command: "{{ drush_path }} -y php:eval 'array_walk(\\Drupal::service('entity_type.manager')->getStorage('taxonomy_term')->loadMultiple(), function($term) { $term->save(); });'" | ||
# args: | ||
# chdir: "{{ drupal_core_path }}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto re: re-enabling. |
||
|
||
- name: Set default solr server to point to CLAW core | ||
command: "{{ drush_path }} -y config-set search_api.server.default_solr_server backend_config.connector_config.core CLAW" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dannylamb I think we are up-to-date in packagist. These can be uncommented now.