default: &default adapter: postgresql encoding: unicode database: <%= ENV['DATABASE_NAME'] %> username: <%= ENV['DATABASE_USERNAME'] %> password: <%= ENV['DATABASE_PASSWORD'] %> port: <%= ENV['DATABASE_PORT'] || '5432' %> host: <%= ENV['DATABASE_HOST'] %> pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 10 } %> timeout: 5000 development: <<: *default database: dawarich_development test: <<: *default database: dawarich_test production: <<: *default database: dawarich_production url: <%= ENV['DATABASE_URL'] %>