Sha256: cf01cf5bd02345bbcb6b30e3a5114f781dba269799552064c5f12126ddfe0a10

Contents?: true

Size: 556 Bytes

Versions: 70

Compression:

Stored size: 556 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", "") %>

staging: *deploy

Version data entries

70 entries across 70 versions & 10 rubygems

Version Path
onotole-1.1.15 templates/postgresql_database.yml.erb
onotole-1.1.14 templates/postgresql_database.yml.erb
onotole-1.1.13 templates/postgresql_database.yml.erb
onotole-1.1.12 templates/postgresql_database.yml.erb
onotole-1.1.10 templates/postgresql_database.yml.erb
onotole-1.1.9 templates/postgresql_database.yml.erb
onotole-1.1.8 templates/postgresql_database.yml.erb
onotole-1.1.7 templates/postgresql_database.yml.erb
onotole-1.1.6 templates/postgresql_database.yml.erb
onotole-1.1.5 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.10 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.8 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.7 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.6 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.5 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.4 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.3 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.2 templates/postgresql_database.yml.erb
suspenders-ocs-0.0.1 templates/postgresql_database.yml.erb
onotole-1.1.4 templates/postgresql_database.yml.erb