cmc-sales/app/config/database.php

32 lines
842 B
PHP
Raw Normal View History

<?php
//CakePHP is pretty awful. I was so foolish.
2020-08-10 05:00:43 -07:00
class DATABASE_CONFIG {
2016-05-01 00:32:56 -07:00
var $default = array(
'driver' => 'mysql',
'persistent' => false,
2025-06-23 04:25:14 -07:00
'host' => '172.17.0.1',
'login' => 'cmc',
'password' => 'xVRQI&cA?7AU=hqJ!%au',
'database' => 'cmc',
'prefix' => '',
);
2025-08-07 20:31:27 -07:00
function __construct() {
// Use environment-specific database settings if APP_ENV is set
if (isset($_ENV['APP_ENV']) && $_ENV['APP_ENV'] == 'staging') {
$this->default = array(
'driver' => 'mysql',
'persistent' => false,
'host' => 'db-staging',
'login' => 'cmc_staging',
'password' => 'staging_password',
'database' => 'cmc_staging',
'prefix' => '',
);
}
}
}