Reorganize provisioning files
This commit is contained in:
parent
98bb404ed4
commit
e0d288a095
5 changed files with 2 additions and 2 deletions
28
provisioning/box/post-tasks/templates/settings.local.php.j2
Normal file
28
provisioning/box/post-tasks/templates/settings.local.php.j2
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?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(
|
||||
CONFIG_SYNC_DIRECTORY => '../custom/config/sync',
|
||||
);
|
||||
|
||||
$config['system.site']['name'] = "{{ drupal_site_name }}";
|
Loading…
Add table
Add a link
Reference in a new issue