Add local.settings.php to every instance

This commit adds a new file 'local.settings.php' to each distillery
instance. This file can be used to automatically edit global distillery
settings.
This commit is contained in:
Tom Wiesing 2024-04-01 16:41:11 +02:00
parent 6eab3ac311
commit 24ff81f7cd
No known key found for this signature in database
13 changed files with 98 additions and 42 deletions

View file

@ -0,0 +1,16 @@
<?php
// Use this file to manually tweak setttings of this instance in an update-agnostic way.
// This file will not be updated by future distillery updates.
//
// The settings.php file contains settings in the following order:
//
// - settings generated by the drupal installer
// - global distillery settings files
// - distillery generated configuration files
// - this file
//
// Because of caching, changes may require an instance restart to take effect.
// // e.g. to turn on verbose logging, uncomment the following line:
// $config["system.logging"]["error_level"] = "verbose";