Sha256: 0da6231d2f1c8693d2efa5101e1b96d63a69c49a17c9e4e7cb3db12b4a330569

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
#
# UMLAUT: mysql db with mysql2 adapter strongly recommended for Umlaut, in both 
# production and development. sqlite3 has unclear semantics under threaded 
# concurrency which umlaut uses, and in many cases simply does not work. 
#
# A high (connection) pool setting is also, sadly, generally
# required at present. 
#
# development:
#   adapter: mysql2
#   host: 
#   username:
#   password:
#   database:
#   pool: 30

development:
  adapter: mysql2
  database: umlaut3_dev
  pool: 30 
  timeout: 5000
  username: umlaut_app
  password: uu21
  host: app01.mse.jhu.edu

# 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: sqlite3
  database: db/test.sqlite3
  pool: 5
  timeout: 5000

production:
  adapter: sqlite3
  database: db/production.sqlite3
  pool: 5
  timeout: 5000


umlaut2_source:
  adapter: mysql2
  host: app01.mse.jhu.edu
  database: umlaut_production
  username: umlaut_app
  password: uu21
  encoding: utf8

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
umlaut-3.0.0alpha5 ./test/dummy/config/database.yml
umlaut-3.0.0alpha4 ./test/dummy/config/database.yml
umlaut-3.0.0alpha3 ./test/dummy/config/database.yml