Advertisement
Guest User

Untitled

a guest
Aug 1st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. development:
  4. adapter: sqlite3
  5. database: shovell_development
  6. pool: 5
  7. timeout: 5000
  8. username: root
  9. password: randompassword12
  10. host: localhost
  11.  
  12. test:
  13. adapter: sqlite3
  14. database: shovell_test
  15. pool: 5
  16. timeout: 5000
  17. username: root
  18. password: randompassword12
  19. host: localhost
  20.  
  21. production:
  22. adapter: sqlite3
  23. database: shovell_production
  24. pool: 5
  25. timeout: 5000
  26. username: root
  27. password: randompassword12
  28. host: localhost
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement