Sha256: ceca2d86968d6a143a3bba79b70256fd79483efca1b2f44a57abfbcb5dcc7dce
Contents?: true
Size: 619 Bytes
Versions: 12
Compression:
Stored size: 619 Bytes
Contents
default: &default pool: 5 encoding: unicode postgresql: default: &postgres_default adapter: postgresql url: <%= ENV['DATABASE_URL'] %> test: &postgres_test <<: *postgres_default url: <%= ENV['DATABASE_URL'] || "postgresql://localhost:#{ENV.fetch('PGPORT', 5432)}/journaled_test" %> database: journaled_test development: &postgres_development <<: *postgres_default url: <%= ENV['DATABASE_URL'] || "postgresql://localhost:#{ENV.fetch('PGPORT', 5432)}/journaled_development" %> database: journaled_development development: <<: *postgres_development test: <<: *postgres_test
Version data entries
12 entries across 12 versions & 1 rubygems