backend/config/database.yml
# PostgreSQL. Versions 9.3 and up are supported.
#
# Install the pg driver:
# gem install pg
# On macOS with Homebrew:
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On macOS with MacPorts:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem "pg"
#
default: &default
adapter: postgresql
encoding: unicode
host: <%= ENV.fetch('PG_HOST', 'db') %>
username: <%= ENV.fetch('PG_USER', 'postgres') %>
password: <%= ENV.fetch('PG_PASSWORD', 'password') %>
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
development:
<<: *default
database: hunt3r_development
test:
<<: *default
database: hunt3r_test
production:
<<: *default
database: hunt3r_production