Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # This DOES NOT know about a database in a Rails `db` directory. To be fixed.
- default: &default
- adapter: postgresql
- encoding: unicode
- pool: 5
- socket: /var/pgsql_socket
- host: localhost
- port: 5432
- username: <%= ENV['NEWPOC_DBUSER'] %>
- password: <%= ENV['NEWPOC_DBPASS'] %>
- # In a real app, you'll certainly want to use different credentials for dev, test & production.
- development:
- <<: *default
- database: app_dev
- # Warning: The database defined as "test" will be erased and
- # re-generated from your development database when you run "rake".
- # Do not set this db to the same as development or production.
- test:
- <<: *default
- database: app_test
- production:
- <<: *default
- database: app_prod
Add Comment
Please, Sign In to add comment