43 lines
994 B
YAML
43 lines
994 B
YAML
# 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 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
|
|
# For details on connection pooling, see Rails configuration guide
|
|
# https://guides.rubyonrails.org/configuring.html#database-pooling
|
|
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
|
|
|
|
|
development:
|
|
primary:
|
|
<<: *default
|
|
database: plays_hub_development
|
|
queue:
|
|
<<: *default
|
|
database: plays_hub_development_queue
|
|
migrations_paths: db/queue_migrate
|
|
|
|
test:
|
|
<<: *default
|
|
database: plays_hub_test
|
|
|
|
production:
|
|
primary:
|
|
<<: *default
|
|
url: <%= ENV["DATABASE_URL"] %>
|
|
queue:
|
|
<<: *default
|
|
url: <%= ENV["DOKKU_POSTGRES_AQUA_URL"] %>
|