Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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. encoding: utf8
  6. database: dradis
  7. pool: 5
  8. timeout: 5000
  9. username: dradis
  10. password: xxxxx
  11. socket: /var/run/mysqld/mysqld.sock
  12.  
  13. # Warning: The database defined as "test" will be erased and
  14. # re-generated from your development database when you run "rake".
  15. # Do not set this db to the same as development or production.
  16. test:
  17. adapter: mysql
  18. encoding: utf8
  19. database: dradis2
  20. pool: 5
  21. timeout: 5000
  22. username: dradis2
  23. password: xxxxx
  24. socket: /var/run/mysqld/mysqld.sock
  25.  
  26.  
  27. production:
  28. adapter: mysql
  29. encoding: utf8
  30. database: dradis3
  31. pool: 5
  32. timeout: 5000
  33. username: dradis3
  34. password: xxxxx
  35. socket: /var/run/mysqld/mysqld.sock
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement