Setup Sidekiq in a Rails 8 app
Add the Sidekiq gem
And remove (or comment out):
Add this line to all configs
Add to development.rb
, staging.rb
, production.rb
:
And comment out the other lines (which are in staging and production configs):
Add the Sidekiq web UI
Add this line to the very top of routes.rb
(above the routes opening block)
Add this into the routes:
Last updated