Sha256: 15538086912fc25933e07eee497b50b5dd8cce32aaf82ab8fbb24a7d7aa6cf85
Contents?: true
Size: 538 Bytes
Versions: 32
Compression:
Stored size: 538 Bytes
Contents
development: &default adapter: postgresql database: <%= app_name %>_development encoding: utf8 min_messages: warning pool: <%%= Integer(ENV.fetch("DB_POOL", 5)) %> reaping_frequency: <%%= Integer(ENV.fetch("DB_REAPING_FREQUENCY", 10)) %> timeout: 5000 test: <<: *default database: <%= app_name %>_test production: &deploy encoding: utf8 min_messages: warning pool: <%%= [Integer(ENV.fetch("MAX_THREADS", 5)), Integer(ENV.fetch("DB_POOL", 5))].max %> timeout: 5000 url: <%%= ENV.fetch("DATABASE_URL", "") %>
Version data entries
32 entries across 32 versions & 4 rubygems