mirror of
https://github.com/mastodon/mastodon.git
synced 2025-12-12 12:22:43 +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
|