Guest User

Untitled

a guest
Jan 26th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.52 KB | None | 0 0
  1. # PostgreSQL. Versions 7.4 and 8.x are supported.
  2. #
  3. # Install the pg driver:
  4. #   gem install pg
  5. # On Mac OS X with macports:
  6. #   gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
  7. # On Windows:
  8. #   gem install pg
  9. #       Choose the win32 build.
  10. #       Install PostgreSQL and put its /bin directory on your path.
  11. #
  12. # Configure Using Gemfile
  13. # gem 'pg'
  14. #
  15. development:
  16.   adapter: postgresql
  17.   encoding: unicode
  18.   database: webtex_development
  19.   pool: 5
  20.   username: webtex
  21.   password:
  22.  
  23.   # Connect on a TCP socket. Omitted by default since the client uses a
  24.   # domain socket that doesn't need configuration. Windows does not have
  25.   # domain sockets, so uncomment these lines.
  26.   #host: localhost
  27.   #port: 5432
  28.  
  29.   # Schema search path. The server defaults to $user,public
  30.   #schema_search_path: myapp,sharedapp,public
  31.  
  32.   # Minimum log levels, in increasing order:
  33.   #   debug5, debug4, debug3, debug2, debug1,
  34.   #   log, notice, warning, error, fatal, and panic
  35.   # The server defaults to notice.
  36.   #min_messages: warning
  37.  
  38. # Warning: The database defined as "test" will be erased and
  39. # re-generated from your development database when you run "rake".
  40. # Do not set this db to the same as development or production.
  41. test: &test
  42.   adapter: postgresql
  43.   encoding: unicode
  44.   database: webtex_test
  45.   pool: 5
  46.   username: webtex
  47.   password:
  48.  
  49. production:
  50.   adapter: postgresql
  51.   encoding: unicode
  52.   database: webtex_production
  53.   pool: 5
  54.   username: webtex
  55.   password:
  56.  
  57. cucumber:
  58.   <<: *test
Add Comment
Please, Sign In to add comment