gambosite/config/database.yml

31 lines
666 B
YAML
Raw Normal View History

2025-01-24 10:22:13 -08:00
default: &default
adapter: sqlite3
encoding: utf8
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
test:
<<: *default
database: db/test.sqlite3
production:
primary: &primary_production
2025-01-26 11:46:00 -08:00
<<: *default
2025-01-27 10:21:09 -08:00
database: db/prod.sqlite3
2025-01-24 10:22:13 -08:00
cache:
<<: *primary_production
2025-01-26 11:46:00 -08:00
database: db/gambo_cache.sqlite3
2025-01-24 10:22:13 -08:00
migrations_paths: db/cache_migrate
queue:
<<: *primary_production
2025-01-26 11:46:00 -08:00
database: db/gambo_queue.sqlite3
2025-01-24 10:22:13 -08:00
migrations_paths: db/queue_migrate
cable:
<<: *primary_production
2025-01-26 11:46:00 -08:00
database: db/gambo_cable.sqlite3
2025-01-24 10:22:13 -08:00
migrations_paths: db/cable_migrate