mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
14 lines
378 B
Text
14 lines
378 B
Text
![]() |
# Easiest way to run Sidekiq::Web.
|
||
|
# Run with "bundle exec rackup simple.ru"
|
||
|
|
||
|
require 'sidekiq'
|
||
|
|
||
|
# A Web process always runs as client, no need to configure server
|
||
|
Sidekiq.configure_client do |config|
|
||
|
config.redis = { url: 'redis://localhost:6379/0', size: 1 }
|
||
|
end
|
||
|
|
||
|
require 'sidekiq/web'
|
||
|
use Rack::Session::Cookie, :secret => "some unique secret string here"
|
||
|
run Sidekiq::Web
|