mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
11 lines
455 B
Ruby
11 lines
455 B
Ruby
app_redis_config = {
|
|
url: URI.parse(ENV.fetch('REDIS_URL', 'redis://127.0.0.1:6379')),
|
|
password: ENV.fetch('REDIS_PASSWORD', nil)
|
|
}
|
|
redis = Rails.env.test? ? MockRedis.new : Redis.new(app_redis_config)
|
|
Nightfury.redis = Redis::Namespace.new('reports', redis: redis)
|
|
|
|
# Alfred - Used currently for round robin and conversation emails.
|
|
# Add here as you use it for more features
|
|
$alfred = Redis::Namespace.new('alfred', redis: redis, warning: true)
|