Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Setup

  1. Make sure your settings.php defines the sync directory at sites/default/config. This can look like the following:
    1. if ($is_installer_url) {
      $config_directories = array(
      CONFIG_SYNC_DIRECTORY => 'sites/default/files',
      );
      }
      else {
      $config_directories = array(
      CONFIG_SYNC_DIRECTORY => 'sites/default/config',
      );
      }
  2. Export all the configuration from your site (using Saving Config Changes), and commit it to sites/default/config .

Saving Config Changes

When you want to push up new database setting changes collaboratively, do the following:

...