Skip to content

Instantly share code, notes, and snippets.

@antico5
Last active January 3, 2017 14:11
Show Gist options
  • Save antico5/7e16c612f374894ba3bea70343734f4a to your computer and use it in GitHub Desktop.
Save antico5/7e16c612f374894ba3bea70343734f4a to your computer and use it in GitHub Desktop.
sidekiq-cron

gem 'sidekiq-cron'

config/initializers/sidekiq.rb

Sidekiq.configure_server do |config|
  config.redis = { url: 'redis://localhost:6379/0'  }
  schedule_file = "config/schedule.yml"
  if File.exists?(schedule_file)
    Sidekiq::Cron::Job.load_from_hash YAML.load_file(schedule_file)
  end
end

Sidekiq.configure_client do |config|
  config.redis = { url: 'redis://localhost:6379/0'  }
end

routes.rb

Rails.application.routes.draw do
  ...
  require 'sidekiq/web'
  require 'sidekiq/cron/web'
  mount Sidekiq::Web => '/sidekiq'
  ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment