Advertisement
Guest User

Untitled

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