Skip to content

Instantly share code, notes, and snippets.

@fidelix
Last active January 3, 2016 05:50
Show Gist options
  • Save fidelix/8418871 to your computer and use it in GitHub Desktop.
Save fidelix/8418871 to your computer and use it in GitHub Desktop.
Development settings file for Drupal 7
<?php
$databases = array (
'default' =>
array (
'default' =>
array (
'database' => 'meusite_local',
'username' => 'root',
'password' => 'root',
'host' => 'localhost',
'port' => '',
'driver' => 'mysql',
'prefix' => '',
),
),
);
$conf['cache'] = 0;
$conf['page_compression'] = 0;
$conf['preprocess_css'] = 0;
$conf['preprocess_js'] = 0;
$conf['block_cache'] = 0;
$conf['cron_safe_threshold'] = 0;
$conf['less_devel'] = TRUE;
$conf['mail_system'] = array('default-system' => 'DevelMailLog');
$conf['file_temporary_path'] = '/tmp';
$conf['redirect_auto_redirect'] = FALSE;
$conf['minify_html'] = 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment