Created
April 3, 2020 01:09
-
-
Save harchs/4b08861adce31048de097e4b7844fd4c 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 db name> | |
| test: | |
| <<: *default | |
| database: <your db name>_test | |
| staging: | |
| <<: *default | |
| database: <your db name>_staging | |
| username: | |
| password: <%= ENV['DATABASE_PASSWORD'] %> | |
| production: | |
| <<: *default | |
| database: <your db name>_production | |
| username: | |
| password: <%= ENV['DATABASE_PASSWORD'] %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment