Advertisement
Guest User

Untitled

a guest
Oct 5th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. # MySQL (default setup). Versions 4.1 and 5.0 are recommended.
  2. #
  3. # Install the MySQL driver:
  4. # gem install mysql
  5. # On MacOS X:
  6. # gem install mysql -- --include=/usr/local/lib
  7. # On Windows:
  8. # gem install mysql
  9. # Choose the win32 build.
  10. # Install MySQL and put its /bin directory on your path.
  11. #
  12. # And be sure to use new-style password hashing:
  13. # http://dev.mysql.com/doc/refman/5.0/en/old-client.html
  14. development:
  15. adapter: mysql2
  16. database: xi3
  17. username: root
  18. password:
  19. host: localhost
  20. click_track:
  21. adapter: mysql2
  22. database: xi_click_tracks
  23. username: root
  24. password:
  25. host: localhost
  26. xi_population:
  27. adapter: mysql2
  28. database: xi_population
  29. username: root
  30. password:
  31. host: localhost
  32.  
  33. # Warning: The database defined as 'test' will be erased and
  34. # re-generated from your development database when you run 'rake'.
  35. # Do not set this db to the same as development or production.
  36. test:
  37. adapter: mysql2
  38. database: xfinity_test
  39. username: root
  40. password:
  41. host: localhost
  42.  
  43. production:
  44. adapter: mysql2
  45. database: xi2
  46. username: root
  47. password:
  48. host: localhost
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement