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

14 lines
295 B
PHP
Raw Normal View History

2022-01-17 10:25:34 +00:00
<?php
return [
'root_url' => '/public',
'database' => [
'name' => 'mysql',
'args' => [
'host' => 'localhost',
'database' => 'test',
'user' => 'root',
'password' => '',
'charset' => 'utf8mb4',
],
],
];