Merge pull request #4280 from zachGlasgow/patch-1

Update Sidekiq command in DEVELOPER-ADVANCED
This commit is contained in:
Jeff Atwood
2016-06-20 14:44:22 -07:00
committed by GitHub

View File

@@ -64,7 +64,7 @@ Create a test account, and enable it with:
Discourse does a lot of stuff async, so it's better to run sidekiq even on development mode:
ruby $(mailcatcher) # open http://localhost:1080 to see the emails, stop with pkill -f mailcatcher
bundle exec sidekiq -d -l log/sidekiq.log # open http://localhost:3000/sidekiq to see the queue, stop with pkill -f sidekiq
bundle exec sidekiq -q critical,low,default -d -l log/sidekiq.log # open http://localhost:3000/sidekiq to see the queue, stop with pkill -f sidekiq
bundle exec rails server
And happy hacking!