goreman icon indicating copy to clipboard operation
goreman copied to clipboard

Suggestion: can goreman be run as a "daemon"

Open liuhewei opened this issue 9 years ago • 1 comments

Sometimes I want to control these processes to be started one by one, rather than start parallel. But I can't handle it easily now:

I can use goreman run start [process], but goreman process itself must be started before. Since goreman hasn't a "daemon" model, it seems that I have to run goreman start [process] &, and then use goreman run ....

I wonder if goreman have a "daemon" model for running itself. For example:

goreman start -d  # start nothing but itself, as a daemon process
goreman run start ....  # use "goreman run" command
goreman stop   # stop goreman daemon process itself

What do you think abou this? @mattn

liuhewei avatar Sep 22 '15 03:09 liuhewei

@liuhewei Yeah, I want this feature too, there is a PM2 in nodejs world has the daemon mode, but it's too heavy

csrutil avatar Oct 08 '22 03:10 csrutil