summaryrefslogtreecommitdiff
path: root/config/database.yml
blob: c52c94d72030221572f5c17a2b3df65c75c68158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
default: &default
  adapter: sqlite3
  pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
  timeout: 5000

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

test:
  <<: *default
  database: db/test.sqlite3

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