honcho icon indicating copy to clipboard operation
honcho copied to clipboard

Honcho: a python clone of Foreman. For managing Procfile-based applications.

Results 32 honcho issues
Sort by recently updated
recently updated
newest added

Hey @nickstenning thanks for this project! I was wondering if there's a way to prevent a .env file from overwriting an existing env var. Consider the following example: ```shell $...

When honcho is used as Pid 1 (in a container), it need to reap zombie processes. Ideas on this?

macOS Monterey hijacked ports 5000 and 7000 for the new AirPlay receiver feature: https://developer.apple.com/forums/thread/682332

Just leaving myself a note here that the systemd exporter seems broken. The process group targets don't correctly specify that they `Want` the service files. Also probably worth fixing `StandardOutput=syslog`...

Also fixes #220. Any falsey value for `time_format` passed to the printer disables it entirely. It could have been done before, but it ends up prefixing with an extra space.

Hi, I'm currently working on a small wrapper project around honcho. I want to add some application control (e.g. scheduling, respawning,...) around the honcho Procfile starting capability. To do so...

Hey, this project recently helped me out, thanks for publishing it. I'm running the same application on two different systems, and it's a bit easier to compare the logs if...

When using `Manager` directly it could be convenient to pass `kwargs` to `Popen`. For example, you could set `shell` to `False` to avoid using the shell. In general this PR...

```python printers = [Printer(), Printer(output = open("foobar.log")) manager = Manager(printer = printers) ``` Attempts to use multiple printers for the Honcho Manager By default, uses the `stdout` `Printer` object.

There should be a way to prevent sending SIGKILL to all processes on 5 seconds timeout. What about making KILL_WAIT environmental variable?