Guest User

Untitled

a guest
Jul 24th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3-ruby (not necessary on OS X Leopard)
  3. #development:
  4. # adapter: sqlite3
  5. # database: db/development.sqlite3
  6. # pool: 5
  7. # timeout: 5000
  8.  
  9. development:
  10. adapter: postgresql
  11. encoding: unicode
  12. database: intranet_development
  13. pool: 5
  14. host: localhost
  15. port: 5432
  16. username: postgres
  17. password: master
  18.  
  19. # Warning: The database defined as "test" will be erased and
  20. # re-generated from your development database when you run "rake".
  21. # Do not set this db to the same as development or production.
  22. test:
  23. adapter: postgresql
  24. encoding: unicode
  25. database: intranet_test
  26. pool: 5
  27. host: localhost
  28. port: 5432
  29. username: postgres
  30. password: master
  31.  
  32. production:
  33. adapter: postgresql
  34. encoding: unicode
  35. database: intranet_production
  36. pool: 5
  37. host: localhost
  38. port: 5432
  39. username: postgres
  40. password: master
Add Comment
Please, Sign In to add comment