Skip to content

Commit

Permalink
Update INSTALL.md
Browse files Browse the repository at this point in the history
Missing database credentials instructions
  • Loading branch information
raupie committed Feb 20, 2019
1 parent b2afc4b commit 6f7dabd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/INSTALL.md
Expand Up @@ -25,6 +25,24 @@ public function registerBundles()
}
```

Add the database configuration in `app/config/config_dev.yml`

```
bm_backup_manager:
database:
default:
type: mysql
host: '%database_host%'
port: '%database_port%'
database: '%database_name%'
user: '%database_user%'
pass: '%database_password%'
storage:
local:
type: Local
root: '%env(PROJECTMAPPINGFOLDER)%/data'
```

## Test

Check that the bundle is installed correctly.
Expand Down

0 comments on commit 6f7dabd

Please sign in to comment.