Guest User

Untitled

a guest
Oct 17th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. shared: &shared
  2. adapter: mysql2
  3. encoding: utf8
  4. reconnect: false
  5. pool: 5
  6. socket: /tmp/mysql.sock
  7. username: root
  8. password:
  9.  
  10. development:
  11. database: motista_development
  12. <<: *shared
  13.  
  14. staging:
  15. database: motista_development
  16. <<: *shared
  17.  
  18. # Warning: The database defined as "test" will be erased and
  19. # re-generated from your development database when you run "rake".
  20. # Do not set this db to the same as development or production.
  21. test: &TEST
  22. database: motista_test
  23. <<: *shared
  24.  
  25. cucumber:
  26. database: motista_test
  27. <<: *shared
  28.  
  29. production:
  30. database: motista_development
  31. <<: *shared
Add Comment
Please, Sign In to add comment