Guest User

Untitled

a guest
May 19th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3-ruby (not necessary on OS X Leopard)
  3. development:
  4. adapter: mysql
  5. database: xxxxxx_development
  6. timeout: 5000
  7. username: root
  8. password:
  9. host: localhost
  10. # Warning: The database defined as 'test' will be erased and
  11. # re-generated from your development database when you run 'rake'.
  12. # Do not set this db to the same as development or production.
  13. test:
  14. adapter: mysql
  15. database: xxxxxx_test
  16. timeout: 5000
  17.  
  18. staging:
  19. adapter: mysql
  20. database: micropower_staging
  21. timeout: 5000
  22. username: xxxxxx
  23. password: xxxxxx
  24.  
  25. production:
  26. adapter: mysql
  27. database: micropower_production
  28. timeout: 5000
  29. username: xxxxxx
  30. password: xxxxxx
Add Comment
Please, Sign In to add comment