Sha256: a865682c40847aacd310c2a6439ab792028df341aae86f28757ced99a035db58
Contents?: true
Size: 788 Bytes
Versions: 13
Compression:
Stored size: 788 Bytes
Contents
production: adapter: postgresql encoding: utf8 database: <%= ENV['DB_NAME'] %> pool: 5 username: <%= ENV['DB_USER'] %> password: <%= ENV['DB_PASSWORD'] %> host: <%= ENV['DB_HOST'] %> port: <%= ENV['DB_PORT'] %> development: &development adapter: postgresql encoding: utf8 database: <%= ENV['DB_NAME'] %>_development username: <%= ENV['DB_USER'] %> password: <%= ENV['DB_PASSWORD'] %> host: <%= ENV["BOXEN_POSTGRESQL_HOST"] || "127.0.0.1" %> port: <%= ENV["BOXEN_POSTGRESQL_PORT"] || 5432 %> # 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: <<: *development database: <%= ENV['DB_NAME'] %>_test pool: 5
Version data entries
13 entries across 13 versions & 1 rubygems