12 lines
219 B
PHP
12 lines
219 B
PHP
<?php
|
|
$env = getenv('APP_ENV') ?: 'staging';
|
|
$env = strtolower($env);
|
|
|
|
if ($env === 'production') {
|
|
$path = __DIR__ . '/production/db.php';
|
|
} else {
|
|
$path = __DIR__ . '/staging/db.php';
|
|
}
|
|
|
|
return require $path;
|