Manage your Drupal 8 site configurations

Introduction

Deployment and configuration management are pretty common but very important parts of every project. These processes are too painful in Drupal 7. Drupal 7 stores all configurations in a database together with content. To manage configurations, you probably have worked with a combination of Features, Strongarm, and other related modules. These modules provide a way to package config into the special "features" Drupal modules.

Drupal 8 provides a completely different way of managing configurations. The idea is that almost all configurations can be stored in files rather than in a database. It allows developers to move settings between development and live sites easily.

In this article, we’ll dive into a new Configuration management system and will learn how to move your configurations from a development environment. As a result, we’ll develop a basic workflow which will help to keep your configurations synchronized between environments.

Before we start, we should determine which part of your website can be exported with a help of the new system.

Configuration management in Drupal 8
Configuration management in Drupal 8

Manage configuration. Not content

Actually, everything besides content is configuration. Following this idea, it is wrong to think that a new configuration management system can help to move content from a development website to a production one. Using the new system you can manage:

  • modules settings and states
  • content types and settings
  • block types and settings
  • permissions
  • views
  • theme settings
  • and so on and so forth

The following things are considered as content and can’t be managed:

  • nodes
  • users
  • custom block and its content
  • other entities content

To move content from dev to prod you probably have to think about a migration system but this is a completely different story.

Let’s examine the configuration management system in action.

Basic settings and preparations

Configuration management functionality is provided by the “Configuration Manager” core module. Make sure it is enabled. After that a new admin page will be available: /admin/config/development/configuration.

This page allows you:

  • to import and export configurations (a full archive or a single one);
  • to synchronize configuration.

Out of the box active Drupal 8 website configuration is stored in DB in “config” tables. This is done for performance and security reasons.This new system allows us to export complete website configuration and store it in YAML files.

Before starting working with configuration let’s configure a folder where we’ll store our configuration YAML files. This folder is configured in the setting.php file:

$config_directories['sync'] = 'sites/default/files/config_HASH/sync';

HASH here is a long hash generated at the stage of installation; it helps to protect configuration from web access.

Now we can export active website configurations manually or using Drush: drush config-export (or drush cex). We stick to Drupal way and will use Drush in this article.

Let’s stop at this point and think a bit. Almost all website configs are now available as YAML files. What does it mean? YAY! It means that we can store your configuration YAML files under a version control system!

Basic workflow with Git and Drush

We are almost sure that your sites/default/files folder is ignored by the version control system. No? Do it ASAP:)

It is recommended to move your config folder to the same level (a sibling of) as your docroot directory (it fully prevents web access to it). That is not always possible and you can move it to the same level as a public files folder (sites/default/files).

Just move the folder and change the setting.php file:

$config_directories['sync'] = 'sites/default/config_HASH/sync';

After running Drush command, YAML files will be created and you can commit them. Let’s get back to admin UI.

The admin UI
The admin UI

At this stage, there are no configuration changes because we just have exported current active configuration. Let’s change something on a website (e.g. a site name) and see what happens.

Configuration changes
Configuration changes

We can see that one configuration item (file) was changed. Now we can see the changes:

Configuration changes
Configuration changes

What's in the picture?

Stage configuration is a configuration which is saved in YAML files. Active configuration is a current website configuration stored in a DB.

At this point, it is very important to understand differences between export and import.

Export is for taking all of the configuration defined in the DB and saving it as YAML files.

Import does the opposite action: it imports the configurations out of YAML files into the DB.

In our example, if you run import using "import all button" or running drush config-import (drush cim) command, it will wipe out a site name change to a state from YAML files (stage config).

If we want to change our staged config we have to run export. After that, the appropriate YAML file will be changed and we can commit changes.

To summarize, a basic workflow to move changes from your dev environment to live one is the following:

On a development website:

  1. Install the configuration management module, configure sync folder, export active configuration and commit it.
  2. Change configurations.
  3. Export changes using command: drush cex
  4. Commit and push changes: git commit and git push

On a live website:

  1. Pull changed configs: git pull
  2. Import changes into live website active configuration: drush cim

As a result, our development and live websites get synchronized in a few simple steps.

Websites get synchronized
Websites get synchronized

Conclusion

Drupal 8 strives to make a process of exporting and importing site configuration easier using a new configuration management system. In this article, we have examined a basic workflow which allows to keep your configurations synchronized between development and live environments. I hope that this workflow will help you to improve your deployment process.

MORE ON THE TOPIC: Drupal 8 Installation Profiles

Related (helpful) modules / distributions

  1. Features: allows you to bundle configs to be re-used on another site. The must-have module for Drupal 8 distributions.
  2. Configuration installer: Drupal profile which allows to install a site from an existing config.
  3. Configuration Tools: automatically commits config changes to git.
  4. Configuration Read-only mode: allows to lock any configuration changes via admin UI.
  5. Configuration development: helps with developing configurations.
  6. Configuration Synchronizer: provides methods for safely importing site configuration from updated modules, themes, or distributions.

You might also like