Skip to content
mperham edited this page Feb 5, 2012 · 30 revisions

Using sidekiq with Heroku is simple, you'll need to use the new Cedar stack and use Foreman to start a sidekiq worker process:

web: bundle exec unicorn ...
worker: bundle exec sidekiq ...

Sidekiq will automatically configure itself to use Redis-to-Go so you don't need to customize the Redis server location.

See this page for more details about Foreman.

Clone this wiki locally