Update syncing and config setup documentation

This commit is contained in:
Keegan Rankin 2022-07-20 19:42:55 +00:00
parent 7cdf10ba80
commit c32d50dacb

View file

@ -111,9 +111,11 @@ $settings['config_sync_directory'] = '../config';
While in `web/sites/default/settings.php` also prevent site administrators being told they can install new modules when they can't and add:
```php
$conf['allow_authorize_operations'] = FALSE;
$settings['allow_authorize_operations'] = FALSE;
```
This `settings.php` file is only being used for local development. Drutopia host is responsible for creating all settings during deployment.
(All this should be updated to use a distribution-wide settings.php when we have that. Until the, use `git add -f web/sites/default/settings.php` to include this in your repo)
```{note}