Add DDEV configuration
This commit is contained in:
parent
b70b30bc99
commit
ef89f5f5c1
5 changed files with 191 additions and 0 deletions
|
@ -767,3 +767,8 @@ if (isset($_SERVER['SYMFONY_DEFAULT_ROUTE_URL']) && file_exists(__DIR__ . '/envi
|
|||
if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) {
|
||||
include $app_root . '/' . $site_path . '/settings.local.php';
|
||||
}
|
||||
|
||||
// Automatically generated include for settings managed by ddev.
|
||||
if (file_exists($app_root . '/' . $site_path . '/settings.ddev.php') && getenv('IS_DDEV_PROJECT') == 'true') {
|
||||
include $app_root . '/' . $site_path . '/settings.ddev.php';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue