Guest User

Untitled

a guest
Dec 15th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. #
  4. # Ensure the SQLite 3 gem is defined in your Gemfile
  5. # gem 'sqlite3'
  6. #
  7. default: &default
  8. adapter: postgresql
  9. encoding: unicode
  10. host: db
  11. username: postgres
  12. password:
  13. pool: 5
  14.  
  15. development:
  16. <<: *default
  17. database: myapp_development
  18.  
  19.  
  20. test:
  21. <<: *default
  22. database: myapp_test
  23.  
  24. production:
  25. <<: *default
  26. database: myapp_production
Add Comment
Please, Sign In to add comment