aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/app/templates/config/databases/frontbase.yml
blob: c0c3588be1b8973ffa4801fd6e61a27229044980 (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: ''