The best practice for managing Site Studio configuration is to use Config Ignore and Config Split to remove Site Studio configuration from Drupal core configuration export and import process. See below for a brief explanation about the these terms.
Site Studio Module Configuration
Site Studio follows standard Drupal community contributed module conventions and stores various module settings in Drupal config entities. This covers configuration required for basic functionality of the Site Studio module such as account, system, google maps API, element and package export settings. This type of configuration is stored using cohesion.* naming pattern. Examples of such configuration include:
Site Studio Configuration
Configuration entities related to the theme layer of the project - styles, templates, components, etc. This type of configuration is stored using cohesion_* naming pattern. Examples of such configuration include:
Config Filter
Contrib module that provides base functionality for hooking into Drupal configuration import and export processes
Config Ignore
Contrib module built using Config Filter. Its main purpose is to ignore specific configuration during the configuration import process.
Config Split
Contrib module built using Config Filter. Its main purpose is to set up a specific configuration to be split up from the rest of the configuration export. Split configuration can be handled in multiple ways:
This guide is based on Drupal Configuration management best practices and recommends the use of the contributed module Config Split (config_split) and Site Studio Packages. The guide covers managing Site Studio Configuration for configuration entities related to the theme layer of the project (cohesion_*). If your project uses alternative or incompatible strategies to manage configuration then you must apply this principle to your application.
This guide does not cover Site Studio Module Configuration (cohesion.*) - handling generic module configuration will depend on project requirements and should be handled in the same way as the rest of your Drupal configuration.
We also recommend that the Site Studio API and Organisation keys are excluded from your codebase, see information on Storing sensitive information outside of your codebase (https://docs.acquia.com/resource/secrets/).
Here are the steps to configure the Config Ignore and Config Split modules to remove Site Studio configuration from the Drupal configuration export and import process:
Ignoring all cohesion configuration might not be the right solution for all websites. If a website has Drupal configuration that depends on Site Studio configuration such as a user role having a dependency on a Site Studio component/helper categories, ignoring all cohesion configuration would not include the categories as dependencies of the user role.
Moving cohesion_* wildcard from Complete Split to Partial Split in config_split 2.x. This is enough for removing all cohesion_* entities from export, but retain dependencies in other entities.
Validate that the changes take effect during Drupal core configuration export and import and test as part of your configuration management developer workflow:
If these occur please revisit the setup steps or check if there are any conflicts with your existing configuration management strategy.
If this content did not answer your questions, try searching or contacting our support team for further assistance.
Wed Mar 26 2025 01:06:13 GMT+0000 (Coordinated Universal Time)