mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
20 lines
587 B
YAML
20 lines
587 B
YAML
development:
|
|
adapter: redis
|
|
url: <%= ENV.fetch("OFN_REDIS_CABLE_URL", "redis://localhost:6379/1") %>
|
|
channel_prefix: your_application_development
|
|
|
|
production:
|
|
adapter: redis
|
|
url: <%= ENV.fetch("OFN_REDIS_CABLE_URL", "redis://localhost:6379/0") %>
|
|
channel_prefix: your_application_production
|
|
|
|
staging:
|
|
adapter: redis
|
|
url: <%= ENV.fetch("OFN_REDIS_CABLE_URL", "redis://localhost:6379/0") %>
|
|
channel_prefix: your_application_staging
|
|
|
|
test:
|
|
adapter: redis
|
|
url: <%= ENV.fetch("OFN_REDIS_CABLE_URL", "redis://localhost:6379/1") %>
|
|
channel_prefix: your_application_test
|