• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H01-Apr-2017-1,046626

honcho/H01-Apr-2017-1,243935

tests/H01-Apr-2017-1,4881,133

tools/H01-Apr-2017-3219

.coveragercH A D01-Apr-2017131 108

.gitignoreH A D01-Apr-201767 109

.travis.ymlH A D01-Apr-2017492 2827

AUTHORS.rstH A D01-Apr-2017609 3429

CHANGELOG.rstH A D01-Apr-20174.3 KiB11690

CONTRIBUTING.rstH A D01-Apr-20173.4 KiB12479

LICENSEH A D01-Apr-20171.1 KiB2117

MANIFEST.inH A D01-Apr-2017147 87

MakefileH A D01-Apr-20171.2 KiB4938

README.rstH A D01-Apr-20172.5 KiB7853

setup.cfgH A D01-Apr-201728 32

setup.pyH A D01-Apr-20172.3 KiB7967

tox.iniH A D01-Apr-20171 KiB6050

README.rst

1::
2
3         ___           ___           ___           ___           ___           ___
4        /\__\         /\  \         /\__\         /\  \         /\__\         /\  \
5       /:/  /        /::\  \       /::|  |       /::\  \       /:/  /        /::\  \
6      /:/__/        /:/\:\  \     /:|:|  |      /:/\:\  \     /:/__/        /:/\:\  \
7     /::\  \ ___   /:/  \:\  \   /:/|:|  |__   /:/  \:\  \   /::\  \ ___   /:/  \:\  \
8    /:/\:\  /\__\ /:/__/ \:\__\ /:/ |:| /\__\ /:/__/ \:\__\ /:/\:\  /\__\ /:/__/ \:\__\
9    \/__\:\/:/  / \:\  \ /:/  / \/__|:|/:/  / \:\  \  \/__/ \/__\:\/:/  / \:\  \ /:/  /
10         \::/  /   \:\  /:/  /      |:/:/  /   \:\  \            \::/  /   \:\  /:/  /
11         /:/  /     \:\/:/  /       |::/  /     \:\  \           /:/  /     \:\/:/  /
12        /:/  /       \::/  /        /:/  /       \:\__\         /:/  /       \::/  /
13        \/__/         \/__/         \/__/         \/__/         \/__/         \/__/
14
15|PyPI| |Build Status| |Code Health|
16
17Honcho is a Python port of Foreman_, a tool for managing Procfile-based applications.
18
19`Why a port? <//honcho.readthedocs.io/en/latest/#why-did-you-port-foreman>`_
20
21.. _Foreman: http://ddollar.github.com/foreman
22
23.. |Build Status| image:: https://secure.travis-ci.org/nickstenning/honcho.svg?branch=master
24   :target: http://travis-ci.org/nickstenning/honcho
25   :alt: Build Status
26
27.. |Code Health| image:: https://landscape.io/github/nickstenning/honcho/master/landscape.svg?style=flat
28   :target: https://landscape.io/github/nickstenning/honcho/master
29   :alt: Code Health
30
31.. |PyPI| image:: https://img.shields.io/pypi/v/honcho.svg
32   :target: https://pypi.python.org/pypi/honcho/
33   :alt: Latest Version on PyPI
34
35Installing Honcho
36-----------------
37
38::
39
40    pip install honcho
41
42How to use Honcho
43-----------------
44
45The 30-second version:
46
471. Write `a Procfile`_::
48
49    $ cat >Procfile <<EOM
50    web: python serve.py
51    redis: redis-server
52    EOM
53
542. *Optional:* write a .env file `to configure your app`_::
55
56    $ cat >.env <<EOM
57    PORT=6000
58    REDIS_URI=redis://localhost:6789/0
59    EOM
60
613. Run the app with Honcho::
62
63    $ honcho start
64
65.. _a Procfile: https://devcenter.heroku.com/articles/procfile
66.. _to configure your app: http://www.12factor.net/config
67
68For more detail and an explanation of the circumstances in which Honcho might
69be useful, consult the `Honcho documentation`_.
70
71.. _Honcho documentation: https://honcho.readthedocs.io/
72
73License
74-------
75
76Honcho is released under the terms of the MIT license, a copy of which can be
77found in ``LICENSE``.
78