Files
shape3d.it/config/config.php
2026-01-24 00:25:50 +01:00

7 lines
121 B
PHP

<?php
$env = getenv('APP_ENV') ?: 'staging';
$env = strtolower($env);
$path = __DIR__ . 'db.php';
return require $path;