11 lines
235 B
PHP
11 lines
235 B
PHP
<?php
|
|
$env = strtolower(getenv('APP_ENV') ?: 'staging');
|
|
$env = $env === 'production' ? 'prod' : $env;
|
|
|
|
$path = __DIR__ . '/' . $env . '/db.php';
|
|
if (!is_file($path)) {
|
|
$path = __DIR__ . '/staging/db.php';
|
|
}
|
|
|
|
return require $path;
|