Change config to work on my local env
Need to figure out how to pre-process database.php or read the values from environment vars. Failing at PHP so unable to do the latter
This commit is contained in:
parent
2b8ccf0492
commit
c3596ef2b1
|
|
@ -2,18 +2,22 @@
|
|||
|
||||
//CakePHP is pretty awful. I was so foolish.
|
||||
|
||||
|
||||
|
||||
class DATABASE_CONFIG {
|
||||
|
||||
var $default = array(
|
||||
'driver' => 'mysql',
|
||||
'persistent' => false,
|
||||
'host' => 'localhost',
|
||||
'host' => '192.168.1.159',
|
||||
'login' => 'quotenik',
|
||||
'password' => 'quotenik',
|
||||
'database' => 'quotenik',
|
||||
'prefix' => '',
|
||||
);
|
||||
|
||||
|
||||
// there are no tests...
|
||||
var $test = array(
|
||||
'driver' => 'mysql',
|
||||
'persistent' => false,
|
||||
|
|
|
|||
Loading…
Reference in a new issue