Guest User

Untitled

a guest
Mar 12th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. defaults: &defaults
  2. adapter: mysql
  3. encoding: utf8
  4. host: localhost
  5. port: 3306 # grep port /etc/mysql/my.cnf
  6. pool: 5
  7. timeout: 5000
  8.  
  9. development:
  10. database: koko_dev
  11. username: koko
  12. password: 'MYSQL_PASSWORD_FOR_KOKO'
  13. <<: *defaults
  14.  
  15. # Warning: The database defined as 'test' will be erased and
  16. # re-generated from your development database when you run 'rake'.
  17. # Do not set this db to the same as development or production.
  18. test:
  19. database: koko_test
  20. username: koko
  21. password: 'MYSQL_PASSWORD_FOR_KOKO'
  22. <<: *defaults
Add Comment
Please, Sign In to add comment