Skip to content

Instantly share code, notes, and snippets.

@mshmsh5000
Created July 3, 2013 14:26
Show Gist options
  • Save mshmsh5000/5918373 to your computer and use it in GitHub Desktop.
Save mshmsh5000/5918373 to your computer and use it in GitHub Desktop.
DB config for QA Drupal DB.
// From CLI, should be able to connect with
// mysql --database=qa_dosomething --host=qa.ds.lan --user=qa_dosomething --password=qa_dosomething -A
$databases = array (
'default' =>
array (
'default' =>
array (
'database' => 'qa_dosomething',
'username' => 'qa_dosomething',
'password' => 'qa_dosomething',
'host' => 'qa.ds.lan',
'port' => '',
'driver' => 'mysql',
'prefix' => '',
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment