Sha256: 555d6dcad7b8289d8e14e5a14c4ad94b2446d13dff93b56459051af742df14c3
Contents?: true
Size: 658 Bytes
Versions: 8
Compression:
Stored size: 658 Bytes
Contents
# SQLite version 3.x # gem install sqlite3 # # Ensure the SQLite 3 gem is defined in your Gemfile # gem 'sqlite3' # default: &default adapter: postgresql host: <%= ENV.fetch('POSTGRES_HOST') { "localhost" } %> username: <%= ENV.fetch('POSTGRES_USER') { `whoami` } %> password: <%= ENV.fetch('POSTGRES_PASSWORD') { nil } %> pool: 5 timeout: 5000 development: <<: *default database: rails_app_dev # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: <<: *default database: rails_app_test
Version data entries
8 entries across 8 versions & 1 rubygems