mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
564 B
19 lines
564 B
development: &default
|
|
adapter: postgresql
|
|
encoding: unicode
|
|
pool: 5
|
|
database: <%= ENV['RDS_DB_NAME'] || 'postgres' %>
|
|
username: <%= ENV['RDS_USERNAME'] || 'postgres' %>
|
|
password: <%= ENV['RDS_PASSWORD'] %>
|
|
host: <%= ENV['RDS_HOSTNAME'] || 'db' %>
|
|
|
|
# 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: velocipede_test
|
|
|
|
production:
|
|
<<: *default
|
|
database: velocipede_production
|
|
|