# SQLite. Versions 3.8.0 and up are supported. # gem install sqlite3 # # Ensure the SQLite 3 gem is defined in your Gemfile # gem 'sqlite3' # default: &default adapter: postgresql host: <%= ENV.fetch('NEP_DB_HOSTNAME', 'localhost') %> port: 5432 encoding: utf8 pool: 5 user: postgres password: secret timeout: 5000 development: <<: *default database: newspapers # 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: db_test production: <<: *default database: newspapers