Updated sample config

This commit is contained in:
Sergio Brighenti 2020-04-12 19:58:15 +02:00
parent 1ac9a0d7be
commit da0a5e96ba
2 changed files with 3 additions and 3 deletions

View file

@ -10,6 +10,6 @@ return [
],
'storage' => [
'driver' => 'local',
'path' => './storage',
'path' => realpath(__DIR__).'/storage',
],
];

View file

@ -41,11 +41,11 @@ return [
'base_url' => 'https://example.com', // no trailing slash
'storage' => [
'driver' => 'local',
'path' => 'storage',
'path' => 'absolute/path/to/storage',
],
'db' => [
'connection' => 'sqlite', // current support for sqlite and mysql
'dsn' => 'abs/path/to/resources/database/xbackbone.db', // if sqlite should be an absolute path
'dsn' => 'absolute/path/to/resources/database/xbackbone.db', // if sqlite should be an absolute path
'username' => null, // username and password not needed for sqlite
'password' => null,
]