Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. # MySQL (default setup).
  2.  
  3. production:
  4. adapter: postgresql
  5. database: chiliproject
  6. host: localhost
  7. port: 5432
  8. username: chiliproject
  9. password: my_password
  10. encoding: utf8
  11.  
  12. devlopment:
  13. adapter: postgresql
  14. database: chiliproject
  15. host: localhost
  16. port: 5432
  17. username: chiliproject
  18. password: my_password
  19. encoding: utf8
  20.  
  21. # Warning: The database defined as "test" will be erased and
  22. # re-generated from your development database when you run "rake".
  23. # Do not set this db to the same as development or production.
  24. test:
  25. adapter: mysql
  26. database: chiliproject_test
  27. host: localhost
  28. username: root
  29. password:
  30. encoding: utf8
  31.  
  32. test_pgsql:
  33. adapter: postgresql
  34. database: chiliproject_test
  35. host: localhost
  36. username: postgres
  37. password: "postgres"
  38.  
  39. test_sqlite3:
  40. adapter: sqlite3
  41. database: db/test.sqlite3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement