Sha256: 8f62ad8a46ccd47f653f6c7ee0afebfea70bd1b4f7a4bf48f739f1ee36ece406
Contents?: true
Size: 617 Bytes
Versions: 20
Compression:
Stored size: 617 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 adapter: postgresql database: <%= app_name %>_production 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", "") %> staging: *deploy
Version data entries
20 entries across 20 versions & 1 rubygems