From 957e95268c783c056dac141336cbbd48199e962e Mon Sep 17 00:00:00 2001 From: Christophe Bliard Date: Fri, 8 Apr 2022 15:17:34 +0200 Subject: [PATCH] add instructions to run Delayed Job worker in bin/setup_dev --- bin/setup_dev | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/setup_dev b/bin/setup_dev index 34bb9a4851..e022aef837 100755 --- a/bin/setup_dev +++ b/bin/setup_dev @@ -31,7 +31,8 @@ try 'bundle exec lefthook install' echo "---------------------------------------" echo "Done. Now start the following services" -echo '- Rails server `RAILS_ENV=development ./bin/rails s`' +echo '- Rails server `RAILS_ENV=development bin/rails server`' echo '- Angular CLI: `npm run serve`' +echo '- Delayed Job worker: `RAILS_ENV=development bin/rails jobs:work`' echo "" echo 'You can also run `foreman start -f Procfile.dev` to run all the above on a single terminal.'