diff --git a/lib/config.php b/lib/config.php index 5d095bc..9d535c6 100644 --- a/lib/config.php +++ b/lib/config.php @@ -8,9 +8,9 @@ return [ 'db' => [ 'host' => getenv('GEIZKRAGEN_DB_HOST') ?: 'localhost', 'port' => (int)(getenv('GEIZKRAGEN_DB_PORT') ?: 3306), - 'user' => getenv('GEIZKRAGEN_DB_USER') ?: 'FSST', - 'pass' => getenv('GEIZKRAGEN_DB_PASS') ?: 'L9wUNZZ9Qkbt', - 'name' => getenv('GEIZKRAGEN_DB_NAME') ?: 'FSST', + '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', ], ];