50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
default: &default
|
|
adapter: sqlite3
|
|
pool: 50
|
|
timeout: 5000
|
|
|
|
development:
|
|
primary:
|
|
<<: *default
|
|
database: storage/fizzy_development.sqlite3
|
|
cable:
|
|
<<: *default
|
|
database: storage/development_cable.sqlite3
|
|
migrations_paths: db/cable_migrate
|
|
cache:
|
|
<<: *default
|
|
database: storage/development_cache.sqlite3
|
|
migrations_paths: db/cache_migrate
|
|
queue:
|
|
<<: *default
|
|
database: storage/development_queue.sqlite3
|
|
migrations_paths: db/queue_migrate
|
|
|
|
# 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:
|
|
primary:
|
|
<<: *default
|
|
database: storage/fizzy_test.sqlite3
|
|
|
|
production: &production
|
|
primary:
|
|
<<: *default
|
|
database: storage/fizzy_<%= Rails.env %>.sqlite3
|
|
cable:
|
|
<<: *default
|
|
database: storage/production_cable.sqlite3
|
|
migrations_paths: db/cable_migrate
|
|
cache:
|
|
<<: *default
|
|
database: storage/production_cache.sqlite3
|
|
migrations_paths: db/cache_migrate
|
|
queue:
|
|
<<: *default
|
|
database: storage/production_queue.sqlite3
|
|
migrations_paths: db/queue_migrate
|
|
|
|
beta: *production
|
|
staging: *production
|