Created
January 4, 2017 16:36
-
-
Save typeoneerror/2edc3e42e81b081b7aa6bdfa5a04a13e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sidekiq/web' | |
redis_options = { url: ENV['REDIS_URL'] } | |
Sidekiq.configure_server do |config| | |
config.redis = redis_options | |
end | |
Sidekiq.configure_client do |config| | |
config.redis = redis_options | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment