Guest User

Untitled

a guest
Jul 18th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. # PostgreSQL. Versions 7.4 and 8.x are supported.
  2. #
  3. # Install the ruby-postgres driver:
  4. # gem install ruby-postgres
  5. # On Mac OS X:
  6. # gem install ruby-postgres -- --include=/usr/local/pgsql
  7. # On Windows:
  8. # gem install ruby-postgres
  9. # Choose the win32 build.
  10. # Install PostgreSQL and put its /bin directory on your path.
  11. development:
  12. adapter: sqlite3
  13. database: db/development.sqlite3
  14. pool: 5
  15. timeout: 5000
  16.  
  17. # Warning: The database defined as "test" will be erased and
  18. # re-generated from your development database when you run "rake".
  19. # Do not set this db to the same as development or production.
  20. test:
  21. adapter: postgresql
  22. encoding: unicode
  23. database: mobiledossier_test
  24. pool: 5
  25. username: postgres
  26. password: postgres
  27.  
  28. production:
  29. adapter: postgresql
  30. encoding: unicode
  31. database: mobiledossier_production
  32. pool: 5
  33. username: postgres
  34. password: postgres
Add Comment
Please, Sign In to add comment