Sha256: d84eda6404ebd226d1d9360a9e43f3d9ebfc49077b5f0806f40b76e5e30592c7
Contents?: true
Size: 632 Bytes
Versions: 35
Compression:
Stored size: 632 Bytes
Contents
# Connect on a TCP socket. Omitted by default since the client uses a # domain socket that doesn't need configuration. Windows does not have # domain sockets, so uncomment these lines. #host: localohst #port: 5432 default: &default host: <%= Rails.application.secrets.database[:host] %> adapter: postgresql encoding: utf8 database: <%= Rails.application.secrets.database[:name] %> pool: 5 username: <%= Rails.application.secrets.database[:username] %> password: <%= Rails.application.secrets.database[:password] %> template: template0 development: <<: *default test: <<: *default production: <<: *default
Version data entries
35 entries across 34 versions & 1 rubygems