c3a9ac7391
and move secrets into Rails credentials for both beta and production environments.
20 lines
259 B
YAML
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
|