
SolidBro is a Rails engine that provides a web UI dashboard for managing SolidQueue jobs, queues, workers, and recurring tasks. Mount it in your app and get a polished alternative to digging through database tables when debugging background work.
Add gem "solid_bro" to your Gemfile, run bundle install, and mount the engine in config/routes.rb:
mount SolidBro::Engine => "/solid_bro"Ensure SolidQueue is configured (config.active_job.queue_adapter = :solid_queue) and migrations are run. Protect the dashboard in production with HTTP Basic auth or your existing admin authentication.
Rails >= 7.0, SolidQueue, and Pagy >= 8.0. Open source under the MIT license.
SolidBro works alongside DeadBro (Rails APM) and SideBro (Sidekiq Web UI)—all maintained by Ruby Dev.