Fix sidekiq command in docs to start all queues instead of only critical.

This commit is contained in:
Jakub Macina 2017-07-25 08:55:22 +02:00
parent 8a362a1c3c
commit d29f213632
1 changed files with 1 additions and 1 deletions

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 -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 sidekiq # open http://localhost:3000/sidekiq to see queues
bundle exec rails server
And happy hacking!