summaryrefslogtreecommitdiff
path: root/config/database.yml
blob: 9888fe98ac856d5a345e0acc698b474676434746 (plain)
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
default: &default
  adapter: mysql2
  encoding: utf8mb4
  database: website
  pool: 5
  timeout: 5000
  host: 127.0.0.1


development:
  <<: *default
  database: redstoner-web
  username: web

production:
  <<: *default
  # please set ENV["DATABASE_URL"]


# 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