nickstenning / honcho

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

Home Page:http://pypi.python.org/pypi/honcho

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

___           ___           ___           ___           ___           ___

/__ / /__ / /__ /

/:/ / /:: /::| | /:: /:/ / /:

/:/__/ /:/: /: | /:/: /:/__/ /:/:

/:: ___ /:/ : /:/ |__ /:/ : /:: ___ /:/ :

/:/: /__/:/__/ :__/:/ /__/:/__/ :__/:/: /__/:/__/ :__/__:/:/ / : /:/ / /__/:/ / : /__/ /__:/:/ / : /:/ /

::/ / : /:/ / ::/ / : /:/ / :/:/ /

/:/ / ::/ / /:/ / :__ /:/ / ::/ /

/__/ /__/ /__/ /__/ /__/ /__/

Latest Version on PyPI Build Status

Honcho is a Python port of Foreman, a tool for managing Procfile-based applications.

Why a port?

Installing Honcho

pip install honcho

How to use Honcho

The 30-second version:

  1. Write a Procfile:

    $ cat >Procfile <<EOM
    web: python serve.py
    redis: redis-server
    EOM
  2. Optional: write a .env file to configure your app:

    $ cat >.env <<EOM
    PORT=6000
    REDIS_URI=redis://localhost:6789/0
    EOM
  3. Run the app with Honcho:

    $ honcho start

For more detail and an explanation of the circumstances in which Honcho might be useful, consult the Honcho documentation.

License

Honcho is released under the terms of the MIT license, a copy of which can be found in LICENSE.

About

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

http://pypi.python.org/pypi/honcho

License:MIT License


Languages

Language:Python 98.5%Language:Makefile 1.3%Language:Shell 0.2%