node-foreman icon indicating copy to clipboard operation
node-foreman copied to clipboard

A Node.js Version of Foreman

Results 12 node-foreman issues
Sort by recently updated
recently updated
newest added

Change "systemd Support" -> "Systemd Support"

This change fixes the issue described in https://github.com/strongloop/node-foreman/issues/176 by: 1. Making `nf` spawn each child process in its own distinct process group via the `detached` option 2. Delivering `SIGINT` signals...

The README says: > If your processes exit, Node Foreman will assume an error has occurred and shut your application down. `nf` does seem to detect the exit of a...

It does not appear that you can disable Alerts. If I am wrong my apologies.

We have an app that assigns its own PORT values for each of the services. Is there a way to tell node-foreman NOT to assign a value to the PORT...

## Problem Recent macs now default to using port 5000 for "control center" https://nono.ma/port-5000-used-by-control-center-in-macos-controlce. If you try to boot foreman with default values you now get an error: ``` 12:20:05...

When adding an env file with other references. It does not allow inlining. ``` PORT=3100 APPLICATION_HOST="localhost:$PORT" ``` Does not work

Hi, trying to run a node script with `--expose-gc`. How would this be possible? Can't find an example in README. ``` nf run 'node --expose-gc' app.js gives /bin/sh: line 1:...

Thanks for the great software! For some reason, the processes don't always get signaled to exit when I press Ctrl-C. When things work correctly, the output looks like this: ```...

I first noticed this when implementing a "release" task in my procfile for a heroku app. https://devcenter.heroku.com/articles/release-phase#specifying-release-phase-tasks According to that document, the Procfile spec should be ok with having a...