diff options
Diffstat (limited to 'installing/manual_install.md')
-rw-r--r-- | installing/manual_install.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/installing/manual_install.md b/installing/manual_install.md index 4938dc7c3..c4961d798 100644 --- a/installing/manual_install.md +++ b/installing/manual_install.md @@ -178,6 +178,16 @@ and password of your postgres database. * Edit it to point to your local postgresql database in the development and test sections. +Example `development` section of `config/database.yml`: + + development: + adapter: postgresql + database: foi_development + username: foi + password: secure-password-here + host: localhost + port: 5432 + Make sure that the user specified in `database.yml` exists, and has full permissions on these databases. As they need the ability to turn off constraints whilst running the tests they also need to be a superuser |