Skip to content
Snippets Groups Projects
Commit 855e3993 authored by Julie gauthier's avatar Julie gauthier
Browse files

Update INSTALL_DEV_Ubuntu_16.04.md upgrade Datasources section

parent a62a4fd2
No related branches found
No related tags found
No related merge requests found
......@@ -274,13 +274,27 @@ Replace `my-password` with suitable value.
Adjust Postgres credentials in `config/app.php`, search for 'Datasources'
and 'default'. Now adjust:
* host
* port
* username
* password
* database
* Datasource for debug-kit
```php
'default' => [
'className' => 'Cake\Database\Connection',
'driver' => 'Cake\Database\Driver\Postgres',
'persistent' => false,
'host' => 'localhost',
//'port' => 'non_standard_port_number',
'username' => 'comptoir',
'password' => 'comptoir',
'database' => 'comptoir',
'encoding' => 'utf8',
'timezone' => 'Europe/Paris',
'cacheMetadata' => true,
'log' => false,
```
You should comment the 'test' section of Datasources.
## APP.PHP Configure debug-kit database credentials
* Add datasource for debug-kit
```php
'debug_kit' => [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment