Sha256: 7814220e35ba20f9e0d3e2aabeab7ded9e1f2bf58d6d34c7d0486d30017fb419

Contents?: true

Size: 574 Bytes

Versions: 28

Compression:

Stored size: 574 Bytes

Contents

development: &default
  adapter: postgresql
  database: <%= app_name %>_development
  encoding: utf8
  host: localhost
  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", "") %>

staging: *deploy

Version data entries

28 entries across 28 versions & 5 rubygems

Version Path
code42template-2.1.0 templates/postgresql_database.yml.erb
code42template-2.0.0 templates/postgresql_database.yml.erb
onotole-1.1.3 templates/postgresql_database.yml.erb
onotole-1.1.1 templates/postgresql_database.yml.erb
onotole-1.1.0 templates/postgresql_database.yml.erb
onotole-1.0.17 templates/postgresql_database.yml.erb
suspenders-1.36.0 templates/postgresql_database.yml.erb
onotole-1.0.16 templates/postgresql_database.yml.erb
kratos-1.1.0 templates/postgresql_database.yml.erb
onotole-1.0.15 templates/postgresql_database.yml.erb
onotole-1.0.13 templates/postgresql_database.yml.erb
onotole-1.0.11 templates/postgresql_database.yml.erb
onotole-1.0.10 templates/postgresql_database.yml.erb
onotole-1.0.8 templates/postgresql_database.yml.erb
onotole-1.0.7 templates/postgresql_database.yml.erb
onotole-1.0.6 templates/postgresql_database.yml.erb
onotole-1.0.4 templates/postgresql_database.yml.erb
onotole-1.0.2 templates/postgresql_database.yml.erb
onotole-1.0.0 templates/postgresql_database.yml.erb
kratos-1.0.3 templates/postgresql_database.yml.erb