Files
fizzy/config/cable.yml
T
Mike Dalessio c3a9ac7391 Create a distinct "beta" environment
and move secrets into Rails credentials for both beta and production
environments.
2025-05-31 10:57:26 -04:00

20 lines
259 B
YAML

cable: &cable
adapter: solid_cable
connects_to:
database:
writing: cable
polling_interval: 0.1.seconds
message_retention: 1.day
development:
<<: *cable
test:
adapter: test
production: &production
<<: *cable
beta:
<<: *production