# username should be set to the role name created in the postgreql database # The password may not matter depending on postgresql configuration. # # The database can be any name not in use. If the app is called my_app, the # following names are typical: # my_app_development # my_app_test # my_app_production # development: adapter: postgresql encoding: unicode database: my_app_development pool: 5 username: craig password: secret host: localhost port: 5432 test: adapter: postgresql encoding: unicode database: my_app_test pool: 5 username: craig password: secret host: localhost port: 5432 production: adapter: postgresql encoding: unicode database: my_app_production pool: 5 username: craig password: secret host: localhost port: 5432