Sha256: 7de997515021426c583bbdb38d833eea1efd6800d5a3ece194b7c8421bd01126
Contents?: true
Size: 785 Bytes
Versions: 7
Compression:
Stored size: 785 Bytes
Contents
development: &default adapter: postgresql database: <%= get(:underscorized_app_name) %>_development encoding: utf8 host: <%%= ENV["BOXEN_POSTGRESQL_HOST"] || ENV["POSTGRESQL_HOST"] || "127.0.0.1" %> port: <%%= ENV["BOXEN_POSTGRESQL_PORT"] || ENV["POSTGRESQL_PORT"] || 5432 %> username: <%%= ENV["POSTGRESQL_USER"] %> min_messages: warning pool: <%%= Integer(ENV.fetch("DB_POOL", 5)) %> reaping_frequency: <%%= Integer(ENV.fetch("DB_REAPING_FREQUENCY", 10)) %> timeout: 5000 test: <<: *default database: <%= get(:underscorized_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
7 entries across 7 versions & 1 rubygems