We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50f3e1 commit 8ab213dCopy full SHA for 8ab213d
config/routes.rb
@@ -1,5 +1,8 @@
1
# frozen_string_literal: true
2
3
+require "sidekiq/web"
4
+require "sidekiq/throttled/web"
5
+
6
Rails.application.routes.draw do
7
# Redirect www subdomain to root in production envs
8
unless Rails.env.local?
@@ -37,6 +40,7 @@
37
40
root to: redirect("/start")
38
41
39
42
mount GoodJob::Engine => "/good-job"
43
+ mount Sidekiq::Web => "/sidekiq"
44
45
get "/start", to: "pages#start"
46
get "/dashboard", to: "dashboard#index"
0 commit comments