aboutsummaryrefslogtreecommitdiffstats
path: root/railties/configs/databases/frontbase.yml
blob: 2eed3133a12becc0603ccc53bc4d1911055fb75b (plain) (blame)
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
# FrontBase versions 4.x
#
# Get the bindings:
#   gem install ruby-frontbase

development:
  adapter: frontbase
  host: localhost
  database: <%= app_name %>_development
  username: <%= app_name %>
  password: ''

# 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: frontbase
  host: localhost
  database: <%= app_name %>_test
  username: <%= app_name %>
  password: ''

production:
  adapter: frontbase
  host: localhost
  database: <%= app_name %>_production
  username: <%= app_name %>
  password: ''