Files
openfoodnetwork/config/cable.yml
2022-09-29 16:03:45 +02:00

20 lines
563 B
YAML

development:
adapter: redis
url: <%= ENV.fetch("OFN_REDIS_URL", "redis://localhost:6379/1") %>
channel_prefix: your_application_development
production:
adapter: redis
url: <%= ENV.fetch("OFN_REDIS_URL", "redis://localhost:6380/0") %>
channel_prefix: your_application_production
staging:
adapter: redis
url: <%= ENV.fetch("OFN_REDIS_URL", "redis://localhost:6380/0") %>
channel_prefix: your_application_staging
test:
adapter: redis
url: <%= ENV.fetch("OFN_REDIS_URL", "redis://localhost:6379/1") %>
channel_prefix: your_application_test