This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/config.example.php

15 lines
322 B
PHP
Raw Normal View History

2022-01-17 10:25:34 +00:00
<?php
return [
'root_url' => '/public/',
2022-01-17 10:25:34 +00:00
'database' => [
'name' => 'mysql',
'args' => [
2022-01-20 08:54:59 +00:00
'host' => '127.0.0.1',
2022-01-17 10:25:34 +00:00
'database' => 'test',
'user' => 'root',
'password' => '',
'charset' => 'utf8mb4',
],
],
2022-05-08 20:00:11 +00:00
"baton_cooldown" => 30
2022-01-17 10:25:34 +00:00
];