2016-11-07 17:20:52 -05:00
|
|
|
host = ENV.fetch('REDIS_HOST') { 'localhost' }
|
|
|
|
port = ENV.fetch('REDIS_PORT') { 6379 }
|
2017-01-17 06:00:03 -05:00
|
|
|
password = ENV.fetch('REDIS_PASSWORD') { false }
|
2017-04-14 20:21:13 -04:00
|
|
|
db = ENV.fetch('REDIS_DB') { 0 }
|
2016-03-24 21:50:48 -04:00
|
|
|
|
|
|
|
Sidekiq.configure_server do |config|
|
2017-04-14 20:21:13 -04:00
|
|
|
config.redis = { host: host, port: port, db: db, password: password }
|
2016-03-24 21:50:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
2017-04-14 20:21:13 -04:00
|
|
|
config.redis = { host: host, port: port, db: db, password: password }
|
2016-03-24 21:50:48 -04:00
|
|
|
end
|