guvnor
guvnor copied to clipboard
A node process manager that isn't spanners all the way down
I'm attempting to switch from pm2 to guvnor but can't get it to install. It looks like something is wrong with my permissions. $ npm install -g guvnor --unsafe-perm npm...
Process app keep restarting after some time running due this error, any clue? TypeError: Cannot read property 'rundir' of undefined at LocalDaemonConnection.connect (/usr/lib/node_modules/guvnor/lib/local/LocalDaemonConnection.js:59:43) at LocalDaemon._connect (/usr/lib/node_modules/guvnor/lib/local/LocalDaemon.js:24:35) at DaemonConnection.connect (/usr/lib/node_modules/guvnor/lib/common/DaemonConnection.js:110:8) at...
I'm using the following docker file: ``` FROM mhart/alpine-node:6.9.1 RUN apk update && apk upgrade && \ apk add --no-cache bash git openssh make gcc g++ python RUN mkdir /root/.ssh...
When i start with a number input,i can remove the process. ``` $ guv start 1234 $ guv remove 1234 //can't remove ``` https://github.com/tableflip/guvnor/blob/2dd914c6ed2b7010a297add0750a3b40963e9c63/lib/cli/Actions.js#L133 ------- ``` $ guv start -n...
I'm trying to understand guvnor's permission model. In particular, I'd like each app I run to be run as a separate user and control all of the apps from my...
Some startup/init/rc managers need a pidfile to check if the boss process is still running. Could we create a pidfile on startup?
When I install an app, it does npm install, but it doesn't run the prepublish hook (which normally runs on npm install). This is used by some npm apps to...
It would be great if we could define a custom npm install command for apps. For example, I have an app that I run with guv. However, I don't want...
If I just run "guv stop app && guv updaterefs app && guv start app" it updates to the newest commit on the current branch, but it doesn't run npm...