You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (file_exists(__DIR__ . '/settings.local.php')) {
I suggest to include settings.local.php within development.settings.php, here is why:
local.settings.php can have cache settings and error reporting settings that differ from production, it is being included last so those settings will override production.settings.php
//development.settings.php
// Include local settings for local development
if (getenv('AMAZEEIO_BASE_URL') == "http://tuttnauer.docker.amazee.io") {
include DIR . '/settings.local.php';
}
drupal-setting-files/Drupal7/sites/default/settings.php
Line 90 in 5e1d945
I suggest to include settings.local.php within development.settings.php, here is why:
local.settings.php can have cache settings and error reporting settings that differ from production, it is being included last so those settings will override production.settings.php
//development.settings.php
// Include local settings for local development
if (getenv('AMAZEEIO_BASE_URL') == "http://tuttnauer.docker.amazee.io") {
include DIR . '/settings.local.php';
}