I use Sidekiq for some of my background processes.
I am currently doing:
run bundle exec rails s on one terminal, and then run bundle exec sidekiq on another terminal so that sidekiq starts itself and looks for jobs to process.
I want:
Once I started bundle exec rails s , it should also run sidekiq bundle exec sidekiq . How can I integrate it into the development environment?
AnkitG
source share