Configure a Drupal 10 codebase with Drupal CMS and Site Studio for Site Factory: Part 4
- Last updated
- 2 minute read
Goal
Demonstrate a regular Site Factory Deployment workflow with Site Studio in mind.
Overview
This is Part 4 of a five-part comprehensive tutorial covering the set up of a new Drupal 10 codebase with Acquia CMS and Site Studio for Acquia Cloud Site Factory (ACSF). In the previous section you learned how to create a new ACSF codebase with a custom profile that you will use to create new Acquia CMS sites and automatically import all the existing Drupal and Site Studio configuration. In this section I will demonstrate a regular ACSF deployment workflow with Site Studio in mind by adding some minor changes to the existing codebase and pushing the new changes across your ACSF sites.
This guide has been divided into five parts:
- Set up Cloud IDE, Install Drupal 10, and Prepare your Codebase for Site Factory
- Acquia CMS and Site Studio installation and configuration for Site Factory
- Create a Custom Profile and test New Site Creation with Site Factory
- ACSF Deployment Workflow with Site Studio
- Optional: Configure multiple Site Studio sync directories
I will now guide you through a standard Site Factory deployment workflow with Site Studio. This will involve making minor modifications to the existing codebase and pushing the updates to your ACSF sites.
-
Making changes to your Codebase: Config Ignore configuration
In order to have configuration differences between your ACSF sites, you will need to list inside the Config Ignore module the configuration entities that you wish to be different between your sites.
For example, If you want to have different site names and different webforms between your Site factory sites, you should add the following configurations entities to your Config Ignore module:
- system.site:name (Will ignore the name of the system site settings, but will not ignore other system.site configuration.)
- webform.webform.* (will ignore all configuration entities that starts with webform.webform)
In your Cloud IDE site, go to the Config Ignore admin page ( /admin/config/development/configuration/ignore) and add the following:
ImageSave your changes.
An alternative method that enables adjustments to be made to your Site Factory site settings, without impacting the site's configuration, is through the utilization of the Site Settings and Labels module:
Site Settings and Labels
https://www.drupal.org/project/site_settingsExport the configuration changes
After you make changes to your codebase, it’s a good idea to check for Database updates:
Export the new Drupal configuration:
Export the Site Studio configuration:
Deploy your codebase changes to ACSF
First, you need to push your new codebase changes to your repository:
Deploy your codebase to ACSF:
I named this new deployed code: 1.0.1-tamacsf
Go to the ACSF Console UI of one of your lower environments, for this tutorial, I’m using the test environment.
Navigate to Administration -> Update code:
ImageIn the Site Update page, use the dropdown to select your new codebase (1.0.1-tamacsf):
ImageClick the Update button and wait until the update process finishes:
ImageCheck for configuration differences: Create your second ACSF site
It’s recommended that you always create a new site to test that your codebase is working fine and that it doesn’t create configuration differences.
Create a new ACSF site using your new codebase. Go to Sites and select your group:
ImageClick the “Create a new Site” button.
Provide a name to your new site (Example: site2), and click the “Create Site” button:
ImageImageCreate a new Drush alias for your new ACSF site
Go back to your Cloud IDE and create a new Drush alias for your new ACSF site using the aliasgenerator.sh bash script.
Execute the aliases.sh bash script and follow the instructions:
Check that your new site doesn’t have configuration differences:
Testing your new codebase: Change the site name of your second site
Login to your new ACSF site using drush uli:
Navigate to the “Basic site settings” admin page (/admin/config/system/site-information) and change the name of your new site:
ImageSave your changes.
Check that this new change in your second site didn’t create a configuration difference:
-
Making changes to your Codebase: Install a new module and make changes to Site Studio
I will install the Shield module to demonstrate the process of adding a new module to your codebase.
Install the new module with Composer
Go to your Cloud IDE instance and execute the following composer command to install the Shield module:
Enable the Shield module:
After installing a new module, it’s alway recommended to see if there are pending database changes:
Go to the Shield module configuration page to make sure the module was installed and enabled successfully (/admin/config/system/shield):
ImageAdd the Shield module to the Config Ignore module
If you wish to have the ability to use different Shield credentials per site, you will need to add the Shield configuration entity to the Config Ignore module.
Open a new Terminal window in your Cloud IDE instance and execute “drush cex” to find out the filename of the Shield configuration file. Respond NO to the prompt as we don’t want to export the configuration changes at this moment:
Go to the Config Ignore admin page of your Cloud IDE site and add “shield.settings” to the end of the list (/admin/config/development/configuration/ignore):
ImageClick the “Save configuration” button to save the changes.
Make changes to Site Studio
In order to demonstrate how to deploy Site Studio changes to ACSF and your ACSF sites, I will change the logo icon of the Site Studio’s Master template.
Navigate to /admin/cohesion/templates/master_templates/master_template/edit and double click the “Site Header” component:
ImageRemove the existing Acquia CMS logo image and click the “Select image” button:
Image- On the Imce File Manager window, click the “Upload” button to upload a new image from your computer.
- After the file is uploaded, make sure it’s selected.
- Click the “Select” button.
ImageClick the “Apply” button to save the changes to the “Site Header” component:
ImageClick the “Save and continue” button to save the changes to the Master Template:
ImageFollow the same steps above to change the Logo Icon of the “Master Template - Boxed” Site Studio template:
ImageGo back to the Cloud IDE terminal and clear the Drupal cache:
Now, if you visit your Cloud IDE site, you should see the new Logo Icon:
ImageExport your new Drupal and Site Studio configuration
Run the following BLT command each time there is a core update or if a new module was installed:
Export the new Drupal configuration:
Export the new Site Studio configuration:
Deploy your new codebase changes to ACSF
First, you need to push your new codebase changes to your repository:
Deploy your codebase to ACSF:
I named this new deployed code: 1.0.2-tamacsf
Go to the ACSF Management Console of one of your lower environments, for this tutorial, I’m using the test environment. Navigate to Administration -> Update code:
ImageOn the Site Update page, use the dropdown to select your new codebase (1.0.2-tamacsf):
ImageClick the Update button and wait until the update process finishes:
ImageCheck the changes in your existing ACSF sites
After you pushed your new codebase to the test environment and updated all the existing sites in there, you should always check that the changes were applied successfully to your sites.
Check your sites to see if they are using the new Logo Icon:
ImageGo to the Config Ignore admin page of one of your ACSF sites to check if it has the new “shield.settings” configuration entity in the list.
Enable the Shield module and check for Configuration Differences
Let’s activate and configure the Shield module on one of your ACSF sites. Go to the Shield module admin page ( /admin/config/system/shield) and click the “Save configuration” button without activating the Shield module and making any changes yet. This will generate the default shield.settings configuration for this site:
ImageNow that the shield.settings configuration exists on this site’s database, check the “Enable Shield” checkbox and assign a user and password under the Credentials section. Click the “Save configuration” button to save the changes:
ImageYou should see the Shield “Sign In” prompt right after you hit the “Save configuration” button:
ImageEnter your Shield credentials to test everything is working fine.
Check for configuration differences
Now that one of your sites has the Shield module activated, you should check if there are any configuration differences.
Go to your Cloud IDE terminal and execute “drush cex” against your ACSF site that has the Shield module activated:
There are no configuration differences, this indicates that we have successfully configured the Config Ignore module to ignore any configuration changes generated by the Shield module on any of your ACSF sites.
Create a new ACSF site to test your new codebase
It’s recommended that you always create a new site to test that your codebase is working fine and that it doesn’t create configuration differences.
Create a new ACSF site using your new codebase. Go to Sites and select your group:
ImageClick the “Create a new Site” button.
Provide a name to your new site (Example: site3), and click the “Create Site” button:
ImageImageCheck your new site for configuration differences
Go back to your Cloud IDE and create a new Drush alias for your new ACSF site using the aliasgenerator.sh bash script.
Execute the aliasgenerator.sh bash script and follow the instructions:
Check your new site for configuration differences:
There are no configuration changes in your newly installed ACSF site. That means your codebase was configured correctly.
Congratulations on successfully completing the fourth phase of the five-step guide! You have learned about the standard Site Factory deployment workflow with Site Studio by making minor modifications to the existing codebase and pushing the new updates to your ACSF sites. Furthermore, you have gained valuable knowledge on configuring Drupal to have configuration differences between your ACSF sites through the use of the Config Ignore module.
Now, let us move on to the next phase (optional), where you will expand your understanding by learning how to configure your ACSF codebase to support multiple Site Studio Configuration folders. In addition, you will also discover how to assign your ACSF sites to use the specific Site Studio configuration folder that you desire.
Next phase: Configure multiple Site Studio sync directories