agaric-coop/provisioning/box/post-tasks/templates/settings.local.php.j2

31 lines
754 B
Text
Raw Normal View History

<?php
/**
* @file
* Settings for the hosted environment.
*/
$databases['default']['default'] = array(
'driver' => 'mysql',
'database' => '{{ drupal_db_name }}',
'username' => '{{ drupal_db_user }}',
'password' => '{{ drupal_db_password }}',
'host' => '{{ drupal_db_host|default(localhost) }}',
'prefix' => '',
);
$settings['trusted_host_patterns'] = array(
'^(.*\.)*{{ vagrant_hostname|default("*")|replace(".", "\.") }}$'
);
$config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess'] = FALSE;
$config_directories = array(
2018-08-24 18:49:50 +00:00
CONFIG_SYNC_DIRECTORY => '../config/sync',
);
2018-08-24 02:57:26 +00:00
$config['system.site']['name'] = '{{ drupal_site_name }}';
$settings['hash_salt'] = 's@lt1s4SQLn0t4$na1l$';