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

Version Path
onotole-2.0.2 templates/postgresql_database.yml.erb
onotole-2.0.1 templates/postgresql_database.yml.erb
onotole-2.0.0 templates/postgresql_database.yml.erb
onotole-1.2.11 templates/postgresql_database.yml.erb
onotole-1.2.10 templates/postgresql_database.yml.erb
onotole-1.2.9 templates/postgresql_database.yml.erb
onotole-1.2.8 templates/postgresql_database.yml.erb
onotole-1.2.7 templates/postgresql_database.yml.erb
onotole-1.2.6 templates/postgresql_database.yml.erb
onotole-1.2.5 templates/postgresql_database.yml.erb
onotole-1.2.4 templates/postgresql_database.yml.erb
onotole-1.2.3 templates/postgresql_database.yml.erb
onotole-1.2.2 templates/postgresql_database.yml.erb
onotole-1.2.1 templates/postgresql_database.yml.erb
onotole-1.1.21 templates/postgresql_database.yml.erb
onotole-1.1.20 templates/postgresql_database.yml.erb
onotole-1.1.19 templates/postgresql_database.yml.erb
onotole-1.1.18 templates/postgresql_database.yml.erb
onotole-1.1.17 templates/postgresql_database.yml.erb
onotole-1.1.16 templates/postgresql_database.yml.erb