dawarich/config/cable.yml

19 lines
351 B
YAML
Raw Normal View History

2025-09-26 13:48:52 -04:00
default: &default
2025-06-09 07:50:43 -04:00
adapter: redis
url: <%= "#{ENV.fetch("REDIS_URL", "redis://localhost:6379")}/#{ENV.fetch('RAILS_WS_DB', 2)}" %>
2025-05-31 15:58:50 -04:00
2025-09-26 13:48:52 -04:00
development:
<<: *default
channel_prefix: dawarich_development
production:
2025-09-26 13:48:52 -04:00
<<: *default
2025-06-09 07:50:43 -04:00
channel_prefix: dawarich_production
2025-09-26 13:48:52 -04:00
staging:
<<: *default
channel_prefix: dawarich_staging
test:
adapter: test