forked from platanus/hound-linters
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The resque command in Procfile is getting unwieldy. This adds bin/resque, which can easily be multiple lines to help break things up and increase maintainability. Inspired by ddollar/foreman#496 (comment)
- Loading branch information
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
resque: TERM_CHILD=1 RESQUE_TERM_TIMEOUT=7 QUEUES=eslint_review,haml_review,scss_review bundle exec rake jobs:work | ||
resque: bin/resque |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
export TERM_CHILD=1 | ||
export RESQUE_TERM_TIMEOUT=7 | ||
export QUEUES=eslint_review,haml_review,scss_review | ||
|
||
bundle exec rake jobs:work |