Created
February 25, 2013 23:05
-
-
Save davereid/5034163 to your computer and use it in GitHub Desktop.
settings.local.php for development
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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