Skip to content

Instantly share code, notes, and snippets.

@hannesl
Last active October 5, 2015 23:28
Show Gist options
  • Select an option

  • Save hannesl/2895226 to your computer and use it in GitHub Desktop.

Select an option

Save hannesl/2895226 to your computer and use it in GitHub Desktop.
Drupal development settings
// ...
// 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