Configure a Drupal 10 codebase with Drupal CMS and Site Studio for Site Factory: Part 3
- Last updated
- 2 minute read
Goal
Create and configure a new custom Drupal installation Profile and test new site creation on Site Factory.
Overview
This is Part 3 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 this section, I will guide you through the process of creating a new custom Drupal installation Profile. I will also provide detailed instructions on how to configure it effectively, ensuring its compatibility with the Site Factory platform. Additionally, you will learn how to properly deploy your codebase to Site Factory.
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
In the following steps, I will guide you through the creation and configuration of a new custom Drupal installation Profile and how to configure it for Site Factory.
-
Create a new Custom Profile
Execute the following commands in your Cloud IDE terminal to create a new custom profile named tamprofile:
Set the new profile as default in your codebase
Modify the following files in your codebase to add the new profile (tamprofile):
- /home/ide/project/config/default/core.extension.yml
- /home/ide/project/blt/blt.yml
Add the following code after the machine_name key:
Example:
Generate the tamprofile.info.yml file
This new file will inform Drupal about the required modules and themes that should get installed when the tamprofile custom profile is used to create a fresh Drupal install.
- /home/ide/project/docroot/profiles/custom/tamprofile/tamprofile.info.yml
Add the following lines of code to your tamprofile.info.yml file and save your changes:
-
Install a local Site with BLT and export the resulting configuration
Note: Acquia BLT will be EOL on December 31, 2024. Please also see You don't need BLT on Acquia Cloud .
With the help of the following BLT command, we will install a new site from the existing configuration on disk by using the new custom installation profile (tamprofile):
You should get the following successful messages:
Then, the new site installation script will proceed to import and rebuild the Site Studio components. Once the installation process for the new Drupal site is complete, you will encounter the following error message:
This is expected. To fix this, import the existing configuration on disk to your new site:
Then, export the resulting configuration differences:
Now you should have no configuration differences between the new site’s database and the existing configuration on disk:
Clear the cache:
Check the new installed site with “drush uli”:
Image -
Test the installation profile simulating Site Factory’s site creation
To make sure everything is working fine, we will reinstall a new site simulating the commands used by Site Factory:
Execute the following BLT command to update the database and perform post site install configuration tasks for the new site. This command will also perform a Site Studio import and Site Studio rebuild:
Clear the cache:
Check the new installed site with drush uli:
Proceed to the homepage to verify that the installation of the new website has been completed successfully:
Image -
Push your codebase to your remote repository
Create a new repository on GitHub.com (https://github.com/new). To avoid errors, do not initialize the new repository with README, license, or gitignore files.
https://github.com/newI named my repository “tamacsf”:
ImageClick the “Create Repository” button.
Connecting Cloud IDE to GitHub, Bitbucket or any other code repository
Follow steps 1, 2, and 3 of the following Acquia Developer Portal article:
Connect Cloud IDE to a non-Acquia Git repository
https://dev.acquia.com/tutorial/connecting-cloud-ide-github-bitbucket-or-any-other-code-repository
Go back to your Cloud IDE instance and execute the following git commands to push your new codebase to your repository:Make sure to replace https://github.com/astralmemories/tamacsf.git with your own remote repository URL.
Execute the following composer command to generate a new hash in your lock file so that your composer.json and composer.lock files are in sync:
Download and extract the updated Acquia Cloud Site Factory Connector:
https://docs.acquia.com/site-factory/workflow/deployments/acsf-init/#executing-acsf-init-after-module-or-drupal-core-updatesPush your new codebase to your repository:
-
Deploy your codebase to Site Factory
Use the following BLT command to deploy your codebase to ACSF:
This command gives you the ability to add a tag to your new codebase that will be available to choose from on any of your ACSF environments.
When prompted, press “y” to create a new tag:
Press Enter to use the same commit message:
For the tag name of the deployment artifact I used: 1.0.0-tamacsf
-
Update the code in your Site Factory account
Go to the ACSF Console UI of one of your environments, for this tutorial, I will use the test environment.
Note: For this tutorial, I’m assuming that there are no installed sites in your ACSF environment. Use an ACSF environment that doesn’t have any Drupal sites, or delete all the sites from the ACSF environment that you want to use. Also, your ACSF environment should be configured to use PHP 8.1.
Navigate to Administration -> Update code:
ImageIn the Site Update page, use the dropdown to select your new codebase (1.0.0-tamacsf):
ImageClick the Update button and wait until the update process finishes:
Image -
Add the new profile to Site Factory
Navigate to Administration -> Installation profile management, enable the tamprofile profile and make it REST API Default:
ImageClick the “Save settings” button.
-
Create a new Site Group in your Site Factory account
Login to your Site Factory Console UI and click the “New Group” button:
ImageAssign a name to your new Site Group and save your changes:
ImageImage -
Create your first site in Site Factory
Now it’s time to create a new ACSF site using your new codebase. Go to Sites and select your group:
ImageTo begin creating a new site, click on the "Create a New Site" button. After doing so, you will be prompted to provide a name for your new site (e.g. site1). Once you have specified the name, click on the "Create Site" button to proceed:
ImageImage -
Add my custom Drush Alias Generator Bash Script
I wrote a bash script that simplifies the process of adding custom Drush aliases to your codebase. This will allow you to run Drush commands against your ACSF sites from your Cloud IDE instance with ease.
Inside the project folder, next to the blt, config, and docroot folders, create the following new folders:
Using nano or vim, create a new bash script named aliasgenerator.sh:
Copy the content of my aliasgenerator.sh bash script below and follow the provided instructions to configure this script for use with your ACSF account:
Save your changes.
Make this bash script executable with the following command:
-
Login to your new Site Factory site
In your Cloud IDE instance, create a new Drush alias for your new ACSF site using the aliasgenerator.sh bash script. Execute the aliasgenerator.sh bash script with the following command and follow the instructions:
Now from your Cloud IDE instance you can execute drush commands against your ACSF sites following this structure:
Because we created site1 in the test environment, the drush commands should look like this:
In your Acquia Cloud Site Factory Console, go to the Sites tab and click the down arrow next to the “Log In” button of your new site. Then click the “Clear Caches” button to clear the varnish cache of your new site:
ImageClear the Drupal cache of your new site using “drush cr”:
Access your new ACSF site using drush uli:
Image
Congratulations on successfully completing the third phase of the five-step guide! You have accomplished the task of creating and configuring a new custom Drupal installation profile, ensuring its compatibility with Site Factory. Now, let us proceed to the next phase where you will learn how to deploy your codebase and create your first ACSF site using your custom profile.
Next phase: ACSF Deployment Workflow with Site Studio