Advertisement
Guest User

Untitled

a guest
Aug 19th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. development:
  2. adapter: mysql2
  3. database: sharetribe_development
  4. encoding: utf8
  5. username: YOUR USERNAME #
  6. password: YOUR PASSWORD #
  7. host: localhost
  8.  
  9. # Warning: The database defined as "test" will be erased and
  10. # re-generated from your development database when you run "rake".
  11. # Do not set this db to the same as development or production.
  12. test: &test
  13. adapter: mysql2
  14. database: sharetribe_test
  15. encoding: utf8
  16. username: YOUR USERNAME #
  17. password: YOUR PASSWORD #
  18. host: localhost
  19.  
  20. staging:
  21. adapter: mysql2
  22. database: sharetribe_staging
  23. encoding: utf8
  24. username: YOUR USERNAME #
  25. password: YOUR PASSWORD #
  26. host: localhost
  27.  
  28. production:
  29. adapter: mysql2
  30. database: sharetribe_production
  31. encoding: utf8
  32. username: YOUR USERNAME #
  33. password: YOUR PASSWORD #
  34. host: localhost
  35.  
  36. cucumber:
  37. <<: *test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement