UnderCurrent/app/config.example.php

16 lines
302 B
PHP
Raw Permalink Normal View History

2023-08-15 21:21:24 +02:00
<?php
namespace App;
use Ardent\Undercurrent\Config\GenericConfig;
return new GenericConfig([
'dev' => true,
'orm' => [
'driver' => 'pdo_mysql',
'host' => 'localhost',
'user' => 'root',
'password' => 'password',
'db' => 'db',
],
2023-08-15 21:21:24 +02:00
]);