Updated sample config
This commit is contained in:
parent
1ac9a0d7be
commit
da0a5e96ba
2 changed files with 3 additions and 3 deletions
|
@ -10,6 +10,6 @@ return [
|
||||||
],
|
],
|
||||||
'storage' => [
|
'storage' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'path' => './storage',
|
'path' => realpath(__DIR__).'/storage',
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
|
@ -41,11 +41,11 @@ return [
|
||||||
'base_url' => 'https://example.com', // no trailing slash
|
'base_url' => 'https://example.com', // no trailing slash
|
||||||
'storage' => [
|
'storage' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'path' => 'storage',
|
'path' => 'absolute/path/to/storage',
|
||||||
],
|
],
|
||||||
'db' => [
|
'db' => [
|
||||||
'connection' => 'sqlite', // current support for sqlite and mysql
|
'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
|
'username' => null, // username and password not needed for sqlite
|
||||||
'password' => null,
|
'password' => null,
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue