File: database.yml

package info (click to toggle)
ruby-seamless-database-pool 1.0.20-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: ruby: 1,544; makefile: 6
file content (40 lines) | stat: -rw-r--r-- 1,025 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# This file contains the databases that the test suite will be run against if you run rake:test:adapters or set the
# environment variable ADAPTER (use commas to test multiple adapters). If you want, you can add your own adapter below
# and it will be added to the test suite.

sqlite3:
  adapter: seamless_database_pool
  database: test.sqlite3
  prepared_statements: false
  master:
    adapter: sqlite3
    pool_weight: 0
  read_pool:
    - adapter: read_only
      real_adapter: sqlite3

postgresql:
  adapter: seamless_database_pool
  database: seamless_database_pool_test
  prepared_statements: false
  username: postgres
  password: postgres
  master:
    adapter: postgresql
    pool_weight: 0
  read_pool:
    - adapter: read_only
      real_adapter: postgresql

mysql:
  adapter: seamless_database_pool
  database: seamless_database_pool_test
  prepared_statements: false
  username: root
  password:
  master:
    adapter: mysql2
    pool_weight: 0
  read_pool:
    - adapter: read_only
      real_adapter: mysql2