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 adapter: mysql2 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