Update README.md

This commit is contained in:
Sergio Brighenti 2019-08-20 23:00:33 +02:00 committed by GitHub
parent e85192523f
commit cabde35a68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,9 +39,12 @@ You must set the `base_url`, or remove it for get dynamically the url from reque
```php
return [
'base_url' => 'https://example.com', // no trailing slash
'storage_dir' => 'storage',
'storage' => [
'driver' => 'local',
'path' => 'storage',
],
'db' => [
'connection' => 'sqlite',
'connection' => 'sqlite', // current support for sqlite and mysql
'dsn' => 'resources/database/xbackbone.db',
'username' => null, // username and password not needed for sqlite
'password' => null,