XBackBone/config.example.php

15 lines
279 B
PHP
Raw Normal View History

2018-04-28 12:20:07 +00:00
<?php
return [
2019-11-18 10:42:42 +00:00
'base_url' => 'https://localhost', // no trailing slash
2018-04-28 12:20:07 +00:00
'db' => [
'connection' => 'sqlite',
'dsn' => 'resources/database/xbackbone.db',
'username' => null,
'password' => null,
2019-05-23 19:24:04 +00:00
],
'storage' => [
'driver' => 'local',
'path' => './storage',
],
2018-04-28 12:20:07 +00:00
];