You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
433 B
19 lines
433 B
---
|
|
|
|
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 } %>
|
|
host: 127.0.0.1
|
|
|
|
development:
|
|
<<: *default
|
|
database: &db-name easy-going-rails
|
|
user: *db-name
|
|
password: *db-name
|
|
|
|
test:
|
|
<<: *default
|
|
database: easy-going-rails_test
|