mediacurrent / rain_features
Rain install profile content features
5.0
2022-12-20 17:36 UTC
Requires
- cweagans/composer-patches: ^1.6
- drupal/address: ~1.0
- drupal/allowed_formats: ~1.0
- drupal/auto_entitylabel: ^3.0
- drupal/block_content_template: ^1.0
- drupal/block_field: ^1.0@RC
- drupal/entity_usage: ~2.0
- drupal/field_group: ~3.0
- drupal/fontawesome: ~2.0
- drupal/geolocation: ~3.0
- drupal/inline_block_title_automatic: ^1.0
- drupal/layout_builder_browser: ^1.0
- drupal/layout_builder_modal: ^1.0
- drupal/layout_builder_restrictions: ^2.0
- drupal/metatag: ~1.0
- drupal/node_revision_delete: ^1.0
- drupal/paragraphs: ~1.0
- drupal/paragraphs_features: ~1.0
- drupal/scheduler: ~1.0 || 2.x-dev@dev
- drupal/search_api: ~1.0
- drupal/search_api_exclude_entity: ^1.3
- drupal/search_api_page: ~1.0
- drupal/search_api_solr: ~1.0 || ^4.1
- drupal/svg_image: ~1.0
- drupal/viewsreference: ~1.0 || ~2.0
- drupal/webform: ^6.0
- 5.x-dev
- 5.0
- 4.x-dev
- 4.3
- 4.2.2
- 4.2.1
- 4.2
- 4.1.1
- 4.1
- 4.0.1
- 4.0
- 3.x-dev
- 3.0-beta3
- 3.0-beta2
- 3.0-beta1
- 2.x-dev
- 2.0-beta2
- 2.0-beta1
- 1.x-dev
- 1.25
- 1.24
- 1.23
- 1.22
- 1.21
- 1.20
- 1.19
- 1.18
- 1.17
- 1.16
- 1.15
- 1.14
- 1.13
- 1.12
- 1.11
- 1.10
- 1.9
- 1.8
- 1.7
- 1.6
- 1.5
- 1.4
- 1.3
- 1.2
- 1.1
- 1.0
- dev-Damien-McKenna/compatibility-with-d10capable-module-rel-1694804479777
- dev-Damien-McKenna/allow-using-search_api_exclude_entity-v2-1694804041292
- dev-2.x-metatag
- dev-bootstrap
- dev-feature/D10
- dev-Jay-Callicott/readmemd-edited-online-with-bitbucket-1660674102458
- dev-feature/hakim/MCSD-452--search-api-exclude-entity
- dev-feature/hakim/MCSD-452--search-api-exclude
- dev-feature/hakim/MCSD-452--search_api_exclude
- dev-feature/patricia/MCSD-445--slider-svg
- dev-Jay-Callicott/composerjson-edited-online-with-bitbucke-1603223198109
- dev-feature/jozellecinco/MCSD-344
- dev-feature/jozellecinco/MCSD-350
- dev-feature/jozellecinco/MCSD-328
- dev-feature/rain-paragraphs-behaviors
- dev-drupal/3088131
- dev-feature/config_set_conditionals
- dev-feature/rain-blocks
- dev-feature/svg-webform-metatag-viewsref
- dev-feature/3.x-proposed
This package is auto-updated.
Last update: 2024-11-18 16:27:28 UTC
README
The Mediacurrent Rain install profile adds out-of-the-box editorial, administrative and media enhancements to the typical Drupal 8 installation. This project adds additional content features to be used in conjunction with the base installation profile.
Optional features
- rain_blocks - Provides common block types.
- rain_content - Provides common content types.
- rain_paragraphs - Provides common paragraphs
- rain_search - Enables Search API search index and page
Making configuration updates to this project
- One aspect of making updates to this project is that its important to remove uuids/hashes from configuration. The base script below will do this for you.
#!/bin/bash FILES=config/install/* for f in $FILES do echo "Processing $f file..." sed -i '' '/^uuid:/d' $f sed -i '' '/^\_core:/d' $f sed -i '' '/^ default_config_hash:/d' $f done