Name | honcho JSON |
Version |
2.0.0
JSON |
| download |
home_page | None |
Summary | Honcho: a Python clone of Foreman. For managing Procfile-based applications. |
upload_time | 2024-10-06 14:26:53 |
maintainer | None |
docs_url | None |
author | None |
requires_python | None |
license | None |
keywords |
sysadmin
process
procfile
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
|
::
___ ___ ___ ___ ___ ___
/\__\ /\ \ /\__\ /\ \ /\__\ /\ \
/:/ / /::\ \ /::| | /::\ \ /:/ / /::\ \
/:/__/ /:/\:\ \ /:|:| | /:/\:\ \ /:/__/ /:/\:\ \
/::\ \ ___ /:/ \:\ \ /:/|:| |__ /:/ \:\ \ /::\ \ ___ /:/ \:\ \
/:/\:\ /\__\ /:/__/ \:\__\ /:/ |:| /\__\ /:/__/ \:\__\ /:/\:\ /\__\ /:/__/ \:\__\
\/__\:\/:/ / \:\ \ /:/ / \/__|:|/:/ / \:\ \ \/__/ \/__\:\/:/ / \:\ \ /:/ /
\::/ / \:\ /:/ / |:/:/ / \:\ \ \::/ / \:\ /:/ /
/:/ / \:\/:/ / |::/ / \:\ \ /:/ / \:\/:/ /
/:/ / \::/ / /:/ / \:\__\ /:/ / \::/ /
\/__/ \/__/ \/__/ \/__/ \/__/ \/__/
|PyPI| |Build Status|
Honcho is a Python port of Foreman_, a tool for managing Procfile-based applications.
`Why a port? <//honcho.readthedocs.io/en/latest/#why-did-you-port-foreman>`_
.. _Foreman: https://ddollar.github.io/foreman
.. |Build Status| image:: https://github.com/nickstenning/honcho/actions/workflows/main.yml/badge.svg
:target: https://github.com/nickstenning/honcho/actions
:alt: Build Status
.. |PyPI| image:: https://img.shields.io/pypi/v/honcho.svg
:target: https://pypi.python.org/pypi/honcho/
:alt: Latest Version on PyPI
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
.. _a Procfile: https://devcenter.heroku.com/articles/procfile
.. _to configure your app: https://www.12factor.net/config
For more detail and an explanation of the circumstances in which Honcho might
be useful, consult the `Honcho documentation`_.
.. _Honcho documentation: https://honcho.readthedocs.io/
License
-------
Honcho is released under the terms of the MIT license, a copy of which can be
found in ``LICENSE``.
Raw data
{
"_id": null,
"home_page": null,
"name": "honcho",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "sysadmin, process, procfile",
"author": null,
"author_email": "Nick Stenning <nick@whiteink.com>",
"download_url": "https://files.pythonhosted.org/packages/65/c8/d860888358bf5c8a6e7d78d1b508b59b0e255afd5655f243b8f65166dafd/honcho-2.0.0.tar.gz",
"platform": null,
"description": "::\n\n ___ ___ ___ ___ ___ ___\n /\\__\\ /\\ \\ /\\__\\ /\\ \\ /\\__\\ /\\ \\\n /:/ / /::\\ \\ /::| | /::\\ \\ /:/ / /::\\ \\\n /:/__/ /:/\\:\\ \\ /:|:| | /:/\\:\\ \\ /:/__/ /:/\\:\\ \\\n /::\\ \\ ___ /:/ \\:\\ \\ /:/|:| |__ /:/ \\:\\ \\ /::\\ \\ ___ /:/ \\:\\ \\\n /:/\\:\\ /\\__\\ /:/__/ \\:\\__\\ /:/ |:| /\\__\\ /:/__/ \\:\\__\\ /:/\\:\\ /\\__\\ /:/__/ \\:\\__\\\n \\/__\\:\\/:/ / \\:\\ \\ /:/ / \\/__|:|/:/ / \\:\\ \\ \\/__/ \\/__\\:\\/:/ / \\:\\ \\ /:/ /\n \\::/ / \\:\\ /:/ / |:/:/ / \\:\\ \\ \\::/ / \\:\\ /:/ /\n /:/ / \\:\\/:/ / |::/ / \\:\\ \\ /:/ / \\:\\/:/ /\n /:/ / \\::/ / /:/ / \\:\\__\\ /:/ / \\::/ /\n \\/__/ \\/__/ \\/__/ \\/__/ \\/__/ \\/__/\n\n|PyPI| |Build Status|\n\nHoncho is a Python port of Foreman_, a tool for managing Procfile-based applications.\n\n`Why a port? <//honcho.readthedocs.io/en/latest/#why-did-you-port-foreman>`_\n\n.. _Foreman: https://ddollar.github.io/foreman\n\n.. |Build Status| image:: https://github.com/nickstenning/honcho/actions/workflows/main.yml/badge.svg\n :target: https://github.com/nickstenning/honcho/actions\n :alt: Build Status\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/honcho.svg\n :target: https://pypi.python.org/pypi/honcho/\n :alt: Latest Version on PyPI\n\nInstalling Honcho\n-----------------\n\n::\n\n pip install honcho\n\nHow to use Honcho\n-----------------\n\nThe 30-second version:\n\n1. Write `a Procfile`_::\n\n $ cat >Procfile <<EOM\n web: python serve.py\n redis: redis-server\n EOM\n\n2. *Optional:* write a .env file `to configure your app`_::\n\n $ cat >.env <<EOM\n PORT=6000\n REDIS_URI=redis://localhost:6789/0\n EOM\n\n3. Run the app with Honcho::\n\n $ honcho start\n\n.. _a Procfile: https://devcenter.heroku.com/articles/procfile\n.. _to configure your app: https://www.12factor.net/config\n\nFor more detail and an explanation of the circumstances in which Honcho might\nbe useful, consult the `Honcho documentation`_.\n\n.. _Honcho documentation: https://honcho.readthedocs.io/\n\nLicense\n-------\n\nHoncho is released under the terms of the MIT license, a copy of which can be\nfound in ``LICENSE``.\n",
"bugtrack_url": null,
"license": null,
"summary": "Honcho: a Python clone of Foreman. For managing Procfile-based applications.",
"version": "2.0.0",
"project_urls": {
"Source": "https://github.com/nickstenning/honcho"
},
"split_keywords": [
"sysadmin",
" process",
" procfile"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "481c25631fc359955569e63f5446dbb7022c320edf9846cbe892ee5113433a7e",
"md5": "1b1100b659af8ea49e0f7da7e527f2f9",
"sha256": "56dcd04fc72d362a4befb9303b1a1a812cba5da283526fbc6509be122918ddf3"
},
"downloads": -1,
"filename": "honcho-2.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1b1100b659af8ea49e0f7da7e527f2f9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 22093,
"upload_time": "2024-10-06T14:26:52",
"upload_time_iso_8601": "2024-10-06T14:26:52.181618Z",
"url": "https://files.pythonhosted.org/packages/48/1c/25631fc359955569e63f5446dbb7022c320edf9846cbe892ee5113433a7e/honcho-2.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "65c8d860888358bf5c8a6e7d78d1b508b59b0e255afd5655f243b8f65166dafd",
"md5": "139f30e789304d1b9f2c5769ea844907",
"sha256": "af3815c03c634bf67d50f114253ea9fef72ecff26e4fd06b29234789ac5b8b2e"
},
"downloads": -1,
"filename": "honcho-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "139f30e789304d1b9f2c5769ea844907",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45618,
"upload_time": "2024-10-06T14:26:53",
"upload_time_iso_8601": "2024-10-06T14:26:53.871458Z",
"url": "https://files.pythonhosted.org/packages/65/c8/d860888358bf5c8a6e7d78d1b508b59b0e255afd5655f243b8f65166dafd/honcho-2.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-06 14:26:53",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "nickstenning",
"github_project": "honcho",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"tox": true,
"lcname": "honcho"
}