Skip to content

Commit

Permalink
use db values from the config
Browse files Browse the repository at this point in the history
  • Loading branch information
aMoniker committed Jun 22, 2014
1 parent 36bccbd commit 5cda0ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
'mysql' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'wpbin',
'username' => 'root',
'password' => '',
'database' => $_ENV['database_name'],
'username' => $_ENV['database_user'],
'password' => $_ENV['database_pass'],
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
Expand Down

0 comments on commit 5cda0ba

Please sign in to comment.