Files
c0de.it/config/staging/domaindata.php
Lars Gebhardt-Kusche 07989f9fba
All checks were successful
Deploy / deploy (push) Successful in 15s
xxx
2026-05-15 22:49:39 +02:00

23 lines
440 B
PHP

<?php
declare(strict_types=1);
$domainBaseCandidates = [
__DIR__ . '/domainbase.php',
dirname(__DIR__) . '/domainbase.php',
];
foreach ($domainBaseCandidates as $candidate) {
if (is_file($candidate)) {
require_once $candidate;
break;
}
}
if (!defined('APP_DOMAIN_NAME')) {
define('APP_DOMAIN_NAME', APP_DOMAIN_BASE);
}
if (!defined('APP_STAGE_PREFIX')) {
define('APP_STAGE_PREFIX', 'staging');
}