mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
20 lines
563 B
YAML
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
|