mirror of
https://github.com/flarum/flarum.git
synced 2025-12-15 00:00:28 -05:00
17 lines
298 B
PHP
17 lines
298 B
PHP
<?php
|
|
|
|
return [
|
|
'debug' => true,
|
|
'database' => [
|
|
'driver' => 'mysql',
|
|
'host' => 'localhost',
|
|
'database' => 'flarum',
|
|
'username' => 'root',
|
|
'password' => 'root',
|
|
'charset' => 'utf8',
|
|
'collation' => 'utf8_unicode_ci',
|
|
'prefix' => '',
|
|
'strict' => false
|
|
]
|
|
];
|