Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # MySQL. Versions 5.0 and up are supported.
  2. #
  3. # Install the MySQL driver
  4. # gem install mysql2
  5. #
  6. # Ensure the MySQL gem is defined in your Gemfile
  7. # gem 'mysql2'
  8. #
  9. # And be sure to use new-style password hashing:
  10. # http://dev.mysql.com/doc/refman/5.7/en/old-client.html
  11. #
  12. default: &default
  13. adapter: mysql2
  14. encoding: utf8
  15. pool: 5
  16. username: user1
  17. password: password
  18. socket: /var/run/mysqld/mysqld.sock
  19.  
  20. development:
  21. <<: *default
  22. database: CompostCalc_development
  23.  
  24. # Warning: The database defined as "test" will be erased and
  25. # re-generated from your development database when you run "rake".
  26. # Do not set this db to the same as development or production.
  27. test:
  28. <<: *default
  29. database: CompostCalc_development
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement