Sha256: fe77140677dd685fd76ca6d2220bcc74a417a58095f1eefc69e326ca3bafe014

Contents?: true

Size: 771 Bytes

Versions: 2

Compression:

Stored size: 771 Bytes

Contents

development: &default
  adapter: mysql2
  database: <%= get(:underscorized_app_name) %>_development
  encoding: utf8
  username: root
  host: <%%= ENV["BOXEN_MYSQL_HOST"] || ENV["MYSQL_HOST"] || "127.0.0.1" %>
  port: <%%= ENV["BOXEN_MYSQL_PORT"] || ENV["MYSQL_PORT"] || 3306 %>
  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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
potassium-2.1.0 lib/potassium/assets/config/database_mysql.yml.erb
potassium-2.0.0 lib/potassium/assets/config/database_mysql.yml.erb