Guest User

Untitled

a guest
Oct 21st, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. development:
  4. adapter: mysql
  5. encoding: utf8
  6. reconnect: false
  7. database: activate_development
  8. pool: 5
  9. user:
  10. password:
  11. socket: /var/run/mysqld/mysqld.sock
  12.  
  13. test:
  14. adapter: mysql
  15. encoding: utf8
  16. reconnect: false
  17. database: activate_test
  18. pool: 5
  19. user:
  20. password:
  21. socket: /var/run/mysqld/mysqld.sock
  22.  
  23. # Warning: The database defined as "test" will be erased and
  24. # re-generated from your development database when you run "rake".
  25. # Do not set this db to the same as development or production.
  26. #test:
  27. # adapter: sqlite3
  28. # database: db/test.sqlite3
  29. # pool: 5
  30. # timeout: 5000
  31. #
  32. #production:
  33. # adapter: sqlite3
  34. # database: db/production.sqlite3
  35. # pool: 5
  36. # timeout: 5000
  37.  
  38. cucumber:
  39. <<: *test
Add Comment
Please, Sign In to add comment