Sha256: d3b71241460e9a4fe1881bd3fadda11d143e67de7f8e8800db82f9f6db3402d9
Contents?: true
Size: 760 Bytes
Versions: 1
Compression:
Stored size: 760 Bytes
Contents
default: &default adapter: postgresql encoding: unicode host: localhost pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> timeout: 5000 username: <%= ENV['DATABASE_USERNAME'] %> password: <%= ENV['DATABASE_PASSWORD'] %> development: <<: *default adapter: postgresql database: demo_app_development # 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: demo_app_test production: adapter: postgresql encoding: unicode database: demo_app_production host: localhost pool: 5 username: <%= ENV['DATABASE_USERNAME'] %> password: <%= ENV['DATABASE_PASSWORD'] %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blog_app-0.0.1 | config/database.yml |