Sha256: 6da38d5638056939ed2fd51b3a71722395f6eb457ae0bec3aa33eae503cd228e

Contents?: true

Size: 1.03 KB

Versions: 5

Compression:

Stored size: 1.03 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

Version data entries

5 entries across 5 versions & 1 rubygems

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