configs
This commit is contained in:
4
config/prod/config.php
Normal file
4
config/prod/config.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
// Für STAGING / DEV:
|
||||
define('ASSET_VERSION', "v1"); // Oder '2025-11-21-dev'
|
||||
5
config/prod/fileload.php
Normal file
5
config/prod/fileload.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
require __DIR__ . "/config.php";
|
||||
require __DIR__ . "/db.php";
|
||||
require __DIR__ . '/../src/functions.php';
|
||||
4
config/staging/config.php
Normal file
4
config/staging/config.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
// Für STAGING / DEV:
|
||||
define('ASSET_VERSION', time()); // Oder '2025-11-21-dev'
|
||||
7
config/staging/fileload.php
Normal file
7
config/staging/fileload.php
Normal 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';
|
||||
Reference in New Issue
Block a user