Last active
October 5, 2015 23:28
-
-
Save hannesl/2895226 to your computer and use it in GitHub Desktop.
Drupal development settings
This file contains hidden or 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
| // ... | |
| // Development settings | |
| $conf['cache'] = 0; | |
| $conf['preprocess_css'] = 0; | |
| $conf['preprocess_js'] = 0; | |
| $conf['error_level'] = 2; | |
| $conf['securepages_switch'] = 0; | |
| $conf['dummyimages_generate'] = 2; | |
| $conf['dummyimages_service'] = 'dummyimage'; | |
| $conf['stage_file_proxy_origin'] = 'http://example.com'; // no trailing slash | |
| $conf['mail_system'] = array( | |
| 'default-system' => 'DevelMailLog', | |
| ); | |
| // After DB sync, run: | |
| // drush en devel stage_file_proxy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment