Skip to content

Commit

Permalink
Updated sample config
Browse files Browse the repository at this point in the history
  • Loading branch information
sergix44 committed Apr 12, 2020
1 parent 1ac9a0d commit da0a5e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.example.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
],
'storage' => [
'driver' => 'local',
'path' => './storage',
'path' => realpath(__DIR__).'/storage',
],
];
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
]
Expand Down

0 comments on commit da0a5e9

Please sign in to comment.