Skip to content

Instantly share code, notes, and snippets.

@sheanhoxie
Created June 1, 2017 20:12
Show Gist options
  • Save sheanhoxie/c6f1ccf04803975a0d74b607b7fc6b84 to your computer and use it in GitHub Desktop.
Save sheanhoxie/c6f1ccf04803975a0d74b607b7fc6b84 to your computer and use it in GitHub Desktop.
Drupal 8 settings.local.php file
<?php
/**
* @file
* An example settings.local.php file for Drupal.
*/
$settings['hash_salt'] = 'thisIsAreallyStupidHash#!!';
$settings['container_yamls'][] = DRUPAL_ROOT . '/sites/development.services.yml';
$settings['cache']['bins']['render'] = 'cache.backend.null';
$settings['cache']['bins']['dynamic_page_cache'] = 'cache.backend.null';
$config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess'] = FALSE;
$databases['default']['default'] = array(
'driver' => 'mysql',
'host' => '127.0.0.1',
'username' => 'root',
'password' => '',
'database' => 'members_local',
'prefix' => '',
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment