Guest User

Untitled

a guest
Oct 19th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. # This is and example of the file that needs to be contained in
  2. # in the config directory of the project and must be named:
  3. # 'database.yml'. Currently it is being managed via symlinking
  4. # durring the deploy process
  5. development:
  6. adapter: mysql2
  7. encoding: utf8
  8. database: development
  9. username: root
  10. password: password
  11. host: 127.0.0.1
  12. port: 3306
  13.  
  14. # Warning: The database defined as "test" will be erased and
  15. # re-generated from your development database when you run "rake".
  16. # Do not set this db to the same as development or production.
  17. test:
  18. adapter: mysql2
  19. encoding: utf8
  20. database: test
  21. username: root
  22. password: password
  23. host: 127.0.0.1
  24. port: 3306
  25.  
  26. production:
  27. adapter: sqlite3
  28. database: db/production.sqlite3
  29. pool: 5
  30. timeout: 5000
  31.  
  32. server: give_the_instance_a_name
Add Comment
Please, Sign In to add comment