38497-vm/db/config.php
Flatlogic Bot 688e42d5dc v1
2026-02-16 19:45:52 +00:00

14 lines
483 B
PHP

<?php
// db/config.php
declare(strict_types=1);
// Database configuration sourced from environment variables, managed by the platform.
// DO NOT CHANGE THESE KEYS OR HARDCODE VALUES.
return [
'DB_HOST' => $_SERVER['DB_HOST'] ?? '127.0.0.1',
'DB_PORT' => $_SERVER['DB_PORT'] ?? '3306',
'DB_NAME' => $_SERVER['DB_NAME'] ?? 'app_38497',
'DB_USER' => $_SERVER['DB_USER'] ?? 'app_38497',
'DB_PASS' => $_SERVER['DB_PASS'] ?? 'f136384b-ba47-4035-beb4-5038b71f0857',
];