Sha256: 4474e94b4f9fb458b9f38e7b90df351a70b8421953e3e1abfcbd496c3844abd0

Contents?: true

Size: 831 Bytes

Versions: 48

Compression:

Stored size: 831 Bytes

Contents

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
#
default: &default
  adapter: sqlite3
  pool: 5
  timeout: 5000

development:
  <<: *default
  database: db/incline_dev.sqlite3

# 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:
  <<: *default
  database: db/incline_test.sqlite3

production:
  <<: *default
  database: db/incline_prod.sqlite3

mssql_test_disabled:
  adapter: sqlserver
  host: 127.0.0.1
  port: 1444
  database: incline_test
  username: <%= (Rails.application.secrets['mssql_test'] || {})['user'] %>
  password: <%= (Rails.application.secrets['mssql_test'] || {})['password'] %>
  timeout: 5000

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
incline-0.3.14 test/dummy/config/database.yml
incline-0.3.13 test/dummy/config/database.yml
incline-0.3.12 test/dummy/config/database.yml
incline-0.3.11 test/dummy/config/database.yml
incline-0.3.10 test/dummy/config/database.yml
incline-0.3.9 test/dummy/config/database.yml
incline-0.3.8 test/dummy/config/database.yml
incline-0.3.7 test/dummy/config/database.yml
incline-0.3.6 test/dummy/config/database.yml
incline-0.3.5 test/dummy/config/database.yml
incline-0.3.4 test/dummy/config/database.yml
incline-0.3.3 test/dummy/config/database.yml
incline-0.3.2 test/dummy/config/database.yml
incline-0.3.1 test/dummy/config/database.yml
incline-0.3.0 test/dummy/config/database.yml
incline-0.2.36 test/dummy/config/database.yml
incline-0.2.35 test/dummy/config/database.yml
incline-0.2.34 test/dummy/config/database.yml
incline-0.2.28 test/dummy/config/database.yml
incline-0.2.27 test/dummy/config/database.yml