Closed benspaulding closed 4 years ago
Thanks! This LGTM. The build is failing because I need to remove support for Python 2.6, but I'm going to go ahead and merge this as everything other than 2.6 is passing.
Actually just spotted one change (to the text of the docs) and if you could make that change and rebase on master that would be fab. Rebasing should fix the Python 2.6 build failure thanks to #216.
Great, thanks! LGTM.
This change adds
-
(dash) to the list of valid characters for a process type. I propose this change because it seems to be the de facto Procfile standard.I recently made a VS Code extension with syntax highlighting for Procfiles. In my testing I found that Honcho is the only Foreman clone that does not allow dashes in the process type. Allowing it would bring it in line with Foreman and the others.
Here is an excerpt from the project README that details my findings:
Foreman & Clones
The most used and robust are:
Others include:
[…]
Procfile
n0 …
n1: …
n2: …
n3 : …
n4:…
n 5: …
# n6: …
#n7: …
n-8: …
n9 :…
Closes #206.