Sha256: 7da099a8048ca3d88138fda68c82223e8b1db12cc55286c5704304c9f73fa5e7

Contents?: true

Size: 267 Bytes

Versions: 7

Compression:

Stored size: 267 Bytes

Contents

# frozen_string_literal: true

DB_CONF = {
  adapter: 'postgresql',
  host: ENV.fetch('DB_HOST', 'host'),
  username: ENV.fetch('DB_USER', 'postgres'),
  password: ENV.fetch('DB_PASSWORD', 'password'),
  database: ENV.fetch('DB_NAME', 'cyclone-lariat-test')
}.freeze

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cyclone_lariat-0.4.0 config/db.example.rb
cyclone_lariat-0.3.10 config/db.example.rb
cyclone_lariat-0.3.9 config/db.example.rb
cyclone_lariat-0.3.8 config/db.example.rb
cyclone_lariat-0.3.7 config/db.example.rb
cyclone_lariat-0.3.6 config/db.example.rb
cyclone_lariat-0.3.5 config/db.example.rb