Guest User

Untitled

a guest
Nov 25th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. # IMPORTANT: host needs to be set to localhost in every environment
  2. # or else you will NOT be able to connect to the database.
  3.  
  4. development:
  5. adapter: postgresql
  6. encoding: unicode
  7. database: social_compass_development
  8. pool: 5
  9. username: postgres
  10. password:
  11.  
  12. host: localhost # this needs to be uncommented for some reason
  13.  
  14. test:
  15. adapter: postgresql
  16. encoding: unicode
  17. database: social_compass_test
  18. pool: 5
  19. username: postgres
  20. password:
  21.  
  22. production:
  23. adapter: postgresql
  24. encoding: unicode
  25. database: social_compass_production
  26. pool: 5
  27. username: postgres
  28. password:
  29.  
  30. host: localhost # this needs to be uncommented for some reason
Add Comment
Please, Sign In to add comment