Last active
February 11, 2020 01:21
-
-
Save anchietajunior/6894b7730b8e8ee57eb386edb5b609be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: &default | |
adapter: postgresql | |
encoding: unicode | |
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> | |
development: | |
<<: *default | |
database: your_database_development | |
host: localhost | |
username: postgres | |
password: postgres | |
port: 5432 | |
test: | |
<<: *default | |
database: your_database_test | |
host: localhost | |
username: postgres | |
password: postgres | |
port: 5432 | |
production: | |
<<: *default | |
database: your_database | |
username: deploy | |
password: <%= ENV['YOUR_DATABASE_PASSWORD'] %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment