Sha256: 607e7048631603b10870266f38830e9a2ffe21acc294877a82ee8d738a15afc6

Contents?: true

Size: 867 Bytes

Versions: 9

Compression:

Stored size: 867 Bytes

Contents

default: &default
  adapter: postgresql
  encoding: unicode
  # For details on connection pooling, see Rails configuration guide
  # http://guides.rubyonrails.org/configuring.html#database-pooling
  pool: <%= ENV.fetch("DB_POOL_SIZE", nil) || (ENV.fetch("RAILS_MAX_THREADS") { 5 }.to_i + 10) %>
  username: <%= ENV.fetch("DB_USERNAME", "") %>
  password: <%= ENV.fetch("DB_PASSWORD", "") %>
  host: <%= ENV.fetch("DB_ADDRESS", "localhost") %>

development:
  <<: *default
  database: inst_data_shipper_development

test:
  <<: *default
  database: inst_data_shipper_test

production:
  <<: *default
  host: <%= ENV.fetch('DB_ADDRESS', 'localhost') %>
  database: inst_data_shipper_production
  username: <%= ENV.fetch("DB_USERNAME", "inst_data_shipper_specs_postgres_user") %>
  password: <%= ENV.fetch("DB_PASSWORD", 'inst_data_shipper_specs_postgres_password') %>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
inst_data_shipper-0.2.6 spec/dummy/config/database.yml
inst_data_shipper-0.2.5 spec/dummy/config/database.yml
inst_data_shipper-0.2.4 spec/dummy/config/database.yml
inst_data_shipper-0.2.3 spec/dummy/config/database.yml
inst_data_shipper-0.2.2 spec/dummy/config/database.yml
inst_data_shipper-0.2.1 spec/dummy/config/database.yml
inst_data_shipper-0.2.0 spec/dummy/config/database.yml
inst_data_shipper-0.1.0.beta2 spec/dummy/config/database.yml
inst_data_shipper-0.1.0.beta1 spec/dummy/config/database.yml