2016-11-08 09:20:52 +11:00
|
|
|
host = ENV.fetch('REDIS_HOST') { 'localhost' }
|
|
|
|
port = ENV.fetch('REDIS_PORT') { 6379 }
|
2017-01-17 22:00:03 +11:00
|
|
|
password = ENV.fetch('REDIS_PASSWORD') { false }
|
2017-04-15 10:21:13 +10:00
|
|
|
db = ENV.fetch('REDIS_DB') { 0 }
|
2016-03-25 12:50:48 +11:00
|
|
|
|
|
|
|
Sidekiq.configure_server do |config|
|
2017-04-15 10:21:13 +10:00
|
|
|
config.redis = { host: host, port: port, db: db, password: password }
|
2016-03-25 12:50:48 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
2017-04-15 10:21:13 +10:00
|
|
|
config.redis = { host: host, port: port, db: db, password: password }
|
2016-03-25 12:50:48 +11:00
|
|
|
end
|