Guest User

Untitled

a guest
Oct 9th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. # PostgreSQL. Versions 8.2 and up are supported.
  2. #
  3. # Configure Using Gemfile
  4. # gem 'activerecord-jdbcpostgresql-adapter'
  5.  
  6. development:
  7. adapter: sqlite3
  8. encoding: unicode
  9. database: sample_app_test
  10.  
  11. # Connect on a TCP socket. Omitted by default since the client uses a
  12. # domain socket that doesn't need configuration. Windows does not have
  13. # domain sockets, so uncomment these lines.
  14. #host: localhost
  15. #port: 5432
  16.  
  17. # Schema search path. The server defaults to $user,public
  18. #schema_search_path: myapp,sharedapp,public
  19.  
  20. # Minimum log levels, in increasing order:
  21. # debug5, debug4, debug3, debug2, debug1,
  22. # log, notice, warning, error, fatal, and panic
  23. # The server defaults to notice.
  24. #min_messages: warning
  25.  
  26. # Warning: The database defined as "test" will be erased and
  27. # re-generated from your development database when you run "rake".
  28. # Do not set this db to the same as development or production.
  29. test:
  30. adapter: sqlite3
  31. encoding: unicode
  32. database: sample_app_test
  33.  
  34. production:
  35. adapter: postgresql
  36. encoding: unicode
  37. database: sample_app_production
  38. username: sample_app
  39. password:
Add Comment
Please, Sign In to add comment