diff options
Diffstat (limited to 'config/database.yml.example')
| -rw-r--r-- | config/database.yml.example | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/config/database.yml.example b/config/database.yml.example new file mode 100644 index 0000000..aac957f --- /dev/null +++ b/config/database.yml.example @@ -0,0 +1,29 @@ +development: + adapter: postgresql + encoding: unicode + min_messages: warning + database: parley_development + host: localhost + pool: 5 + username: parley_app + password: postgres + +test: + adapter: postgresql + encoding: unicode + min_messages: warning + database: parley_test + host: localhost + pool: 5 + username: parley_app + password: postgres + +production: + adapter: postgresql + encoding: unicode + min_messages: warning + database: parley_development + host: localhost + pool: 5 + username: parley_app + password: postgres |
