Remove config.php from tracking

This commit is contained in:
Fabian Schieder 2026-03-23 19:13:59 +00:00
parent cdea9d57e9
commit f39507f967

View File

@ -1,17 +0,0 @@
<?php
// Zentrale Konfiguration
// Hinweis: In Produktion idealerweise per Environment-Variablen setzen.
declare(strict_types=1);
return [
'db' => [
'host' => getenv('GEIZKRAGEN_DB_HOST') ?: 'localhost',
'port' => (int)(getenv('GEIZKRAGEN_DB_PORT') ?: 3306),
'user' => getenv('GEIZKRAGEN_DB_USER') ?: 'User',
'pass' => getenv('GEIZKRAGEN_DB_PASS') ?: 'password',
'name' => getenv('GEIZKRAGEN_DB_NAME') ?: 'DB-Name',
'charset' => getenv('GEIZKRAGEN_DB_CHARSET') ?: 'utf8mb4',
],
];