Setup Hanami with Sidekiq

Introduction Sidekiq is the standard in the Ruby ecosystem for background jobs. This short tutorial will show you how to set up Sidekiq in a Hanami application using Docker Compose. For the basic setup, please look at my previous tutorial: Getting Started with Hanami and Docker Compose. We’ll modify that demo application to support Sidekiq. Steps 1. Add the Sidekiq gem ⚡ bundle add sidekiq 2. Add a Sidekiq provider Add a Hanami provider for Sidekiq (config/providers/sidekiq. »