Move all files to code/
This commit is contained in:
parent
0a1da40788
commit
8447b33ec8
27 changed files with 0 additions and 0 deletions
16
code/web/sites/default/settings.php
Normal file
16
code/web/sites/default/settings.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
// @codingStandardsIgnoreFile
|
||||
|
||||
$settings['hash_salt'] = '53cr3t!';
|
||||
|
||||
$settings["config_sync_directory"] = '../config';
|
||||
|
||||
if (file_exists(__DIR__ . '/settings.local.php')) {
|
||||
require_once __DIR__ . '/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