This commit is contained in:
2025-11-21 01:56:02 +01:00
parent 1f77464e1f
commit 732733b9da
11 changed files with 195 additions and 11 deletions

View File

@@ -0,0 +1,4 @@
<?php
// Für STAGING / DEV:
define('ASSET_VERSION', time()); // Oder '2025-11-21-dev'

View File

@@ -0,0 +1,7 @@
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
require __DIR__ . "/config.php";
require __DIR__ . "/db.php";
require __DIR__ . '/../src/functions.php';