Sha256: ee40b2ccb513fa04d6ecd2c6c35ce66850d2f9d11dfe618beb5b48be6934e786

Contents?: true

Size: 820 Bytes

Versions: 2

Compression:

Stored size: 820 Bytes

Contents

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
development:
  adapter: postgresql
  database: crm_dev
  username: postgres
  password: 
  host: localhost
  encoding: UTF8
  pool: 5
  timeout: 5000

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
    adapter: postgresql
    database: crm_test
    username: postgres
    password: 
    host: localhost
    encoding: UTF8
    pool: 5
    timeout: 5000

production:
    adapter: postgresql
    prepared_statements: false
    database: crm_prod
    username: postgres
    password: 
    host: localhost
    encoding: UTF8
    pool: 5
    timeout: 5000

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guara-0.0.3 config/database.yml
guara-0.0.1.rc config/database.yml