Honcho

2.0.0 · active · verified Sat Apr 11

Honcho is a Python port of David Dollar's Foreman, a command-line application that helps you manage and run Procfile-based applications. It simplifies deployment and configuration in development and production by running multiple external processes and multiplexing their output. The current version is 2.0.0, with releases occurring infrequently but actively maintained.

Warnings

Install

Imports

Quickstart

Create a Procfile to define your application's processes (e.g., a simple web server) and then use `honcho start` to run them. Honcho will automatically read the `Procfile` in the current directory and assign a port.

echo 'web: python -m http.server $PORT' > Procfile
honcho start

view raw JSON →