big
All checks were successful
Deploy / deploy (push) Successful in 1m8s

This commit is contained in:
2026-08-23 02:47:01 +02:00
parent 9bbbd94b98
commit 49c13dfd80
19 changed files with 555 additions and 24 deletions

View File

@@ -1,6 +1,12 @@
<?php
declare(strict_types=1);
// Local server secrets live outside the public webroot and are never committed.
$localSecrets = __DIR__ . '/secrets.local.php';
if (is_file($localSecrets)) {
require_once $localSecrets;
}
// Basic error reporting (keep strict in dev)
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');