mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
5ea0ca89d0
Just run "rails s" in myapp/ and go to http://localhost:3000/sidekiq
9 lines
234 B
Ruby
9 lines
234 B
Ruby
require 'sidekiq/web'
|
|
|
|
Myapp::Application.routes.draw do
|
|
mount Sidekiq::Web => '/sidekiq'
|
|
get "work" => "work#index"
|
|
get "work/email" => "work#email"
|
|
get "work/post" => "work#delayed_post"
|
|
get "work/long" => "work#long"
|
|
end
|