You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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 rungoreman start [process] &
, and then usegoreman run ...
.I wonder if goreman have a "daemon" model for running itself. For example:
What do you think abou this? @mattn
The text was updated successfully, but these errors were encountered: