Created
December 15, 2018 16:48
-
-
Save tushartuteja/001a33929f6486bc04adb3fdb2ce3f0c 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
| # SQLite version 3.x | |
| # gem install sqlite3 | |
| # | |
| # Ensure the SQLite 3 gem is defined in your Gemfile | |
| # gem 'sqlite3' | |
| # | |
| default: &default | |
| adapter: postgresql | |
| encoding: unicode | |
| host: db | |
| username: postgres | |
| password: | |
| pool: 5 | |
| development: | |
| <<: *default | |
| database: myapp_development | |
| test: | |
| <<: *default | |
| database: myapp_test | |
| production: | |
| <<: *default | |
| database: myapp_production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment