Setup
- Make sure your settings.php defines the sync directory at sites/default/config. This can look like the following:
if ($is_installer_url) {
$config_directories = array(
CONFIG_SYNC_DIRECTORY => 'sites/default/files',
);
}
else {
$config_directories = array(
CONFIG_SYNC_DIRECTORY => 'sites/default/config',
);
}
- 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:
...