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

development:
  <<: *default
  database: proof

test:
  <<: *default
  database: proof_test

production:
  <<: *default
  url: <%= ENV['DATABASE_URL'] %>