mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2025-02-08 12:37:56 +00:00
10 lines
200 B
Ruby
10 lines
200 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sidekiq.configure_server do |config|
|
|
config.redis = { url: ENV['REDIS_URL'] }
|
|
end
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = { url: ENV['REDIS_URL'] }
|
|
end
|