[ENV] Database config

This commit is contained in:
Mathieu Magnin 2018-02-09 09:49:02 +01:00 committed by Paul Chavard
parent 4487f4c117
commit 46bb8df5cd

View file

@ -1,17 +1,26 @@
development:
default: &default
adapter: postgresql
encoding: unicode
pool: <%= ENV.fetch("DB_POOL") { 5 } %>
timeout: 5000
development:
<<: *default
database: tps_development
host: localhost
pool: 5
username: tps_development
password: tps_development
test:
adapter: postgresql
encoding: unicode
<<: *default
database: tps_test
host: localhost
pool: 5
username: tps_test
password: tps_test
production:
<<: *default
database: <%= ENV["DB_DATABASE"] %>
host: <%= ENV["DB_HOST"] %>
username: <%= ENV["DB_USERNAME"] %>
password: <%= ENV["DB_PASSWORD"] %>