This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-07 14:20:52 -08:00
|
|
|
host = ENV.fetch('REDIS_HOST') { 'localhost' }
|
|
|
|
port = ENV.fetch('REDIS_PORT') { 6379 }
|
2016-03-24 18:50:48 -07:00
|
|
|
|
|
|
|
Sidekiq.configure_server do |config|
|
2016-03-25 08:10:14 -07:00
|
|
|
config.redis = { host: host, port: port }
|
2016-03-24 18:50:48 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
2016-03-25 08:10:14 -07:00
|
|
|
config.redis = { host: host, port: port }
|
2016-03-24 18:50:48 -07:00
|
|
|
end
|