The Procfile currently invokes Node by merging stderr and stdout and piping the result through cat:
web: ./index.js 2>&1 | cat
This should be added to the Piku docs someplace, since
a) I can't (yet) find a uwsgi setting for properly handling subprocess stderr in a way that this goes away (which would be ideal)
b) It's likely to be necessary for more binaries
looping @chr15m for commentary.
The
Procfilecurrently invokes Node by mergingstderrandstdoutand piping the result throughcat:This should be added to the Piku docs someplace, since
a) I can't (yet) find a
uwsgisetting for properly handling subprocessstderrin a way that this goes away (which would be ideal)b) It's likely to be necessary for more binaries
looping @chr15m for commentary.