Skip to content

Instantly share code, notes, and snippets.

@davereid
Created February 25, 2013 23:05
Show Gist options
  • Save davereid/5034163 to your computer and use it in GitHub Desktop.
Save davereid/5034163 to your computer and use it in GitHub Desktop.
settings.local.php for development
<?php
// Twig development settings.
$settings['twig_debug'] = TRUE;
$settings['twig_auto_reload'] = TRUE;
$settings['twig_cache'] = FALSE;
// Use FileStorage.
// @see http://drupal.org/node/1908440
// @see http://drupal.org/node/1899842
$conf['php_storage']['default']['class'] = 'Drupal\Component\PhpStorage\FileStorage';
$conf['php_storage']['default']['directory'] = 'sites/default/files/php';
if (drupal_is_cli()) {
$conf['php_storage']['default']['directory'] = 'sites/default/files/php-drush';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment