-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Heroku
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 add a Procfile to your Rails app 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 Procfiles, Foreman and Heroku.