Update: 2026-05-03 17:32:57
This commit is contained in:
13
app/config/database.php
Normal file
13
app/config/database.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Database Configuration
|
||||
*/
|
||||
|
||||
return [
|
||||
'host' => $_ENV['DB_HOST'] ?? '127.0.0.1',
|
||||
'port' => $_ENV['DB_PORT'] ?? '3306',
|
||||
'database' => $_ENV['DB_DATABASE'] ?? 'musadaqDb',
|
||||
'username' => $_ENV['DB_USERNAME'] ?? 'musadaqUser',
|
||||
'password' => $_ENV['DB_PASSWORD'] ?? '',
|
||||
'charset' => $_ENV['DB_CHARSET'] ?? 'utf8mb4',
|
||||
];
|
||||
Reference in New Issue
Block a user