Guest User

Untitled

a guest
Aug 19th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. defaults: &defaults
  2. adapter: mongodb
  3.  
  4. development:
  5. <<: *defaults
  6. host: localhost
  7. database: clock_development
  8. port: 27017
  9.  
  10. test:
  11. <<: *defaults
  12. host: localhost
  13. database: clock_test
  14. port: 27017
  15.  
  16. production:
  17. <<: *defaults
  18. host: localhost
  19. database: clock_production
  20. port: 27017
  21.  
  22. heroku:
  23. <<: *defaults
  24. host: staff.mongohq.com
  25. database: fhsclock
  26. port: 10015
  27. username: ENV["MONGO_USERNAME"]
  28. password: ENV["MONGO_PASSWORD"]
Add Comment
Please, Sign In to add comment