XBackBone/config.example.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2018-04-28 12:20:07 +00:00
<?php
2019-11-20 17:49:31 +00:00
/*
* @copyright Copyright (c) 2019 Sergio Brighenti <sergio@brighenti.me>
*
* @author Sergio Brighenti <sergio@brighenti.me>
*
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
return array(
2019-11-18 10:42:42 +00:00
'base_url' => 'https://localhost', // no trailing slash
'db' => array(
2019-11-20 17:49:31 +00:00
'connection' => 'sqlite',
'dsn' => 'resources/database/xbackbone.db',
'username' => null,
'password' => null,
),
'storage' => array(
2019-11-20 17:49:31 +00:00
'driver' => 'local',
'path' => './storage',
),
);