mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
5764d52b04
a basic home timeline
11 lines
245 B
Ruby
11 lines
245 B
Ruby
host = ENV['REDIS_HOST'] || 'localhost'
|
|
port = ENV['REDIS_PORT'] || 6379
|
|
|
|
Sidekiq.configure_server do |config|
|
|
config.redis = { host: host, port: port }
|
|
end
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = { host: host, port: port }
|
|
end
|