mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-22 07:45:09 +00:00
108 lines
3.6 KiB
Text
108 lines
3.6 KiB
Text
Metadata-Version: 2.0
|
|
Name: honcho
|
|
Version: 1.0.1
|
|
Summary: Honcho: a Python clone of Foreman. For managing Procfile-based applications.
|
|
Home-page: https://github.com/nickstenning/honcho
|
|
Author: Nick Stenning
|
|
Author-email: UNKNOWN
|
|
License: MIT
|
|
Keywords: sysadmin process procfile
|
|
Platform: UNKNOWN
|
|
Classifier: Environment :: Console
|
|
Classifier: Intended Audience :: Developers
|
|
Classifier: Intended Audience :: System Administrators
|
|
Classifier: License :: OSI Approved :: MIT License
|
|
Classifier: Operating System :: OS Independent
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 2
|
|
Classifier: Programming Language :: Python :: 2.6
|
|
Classifier: Programming Language :: Python :: 2.7
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.3
|
|
Classifier: Programming Language :: Python :: 3.4
|
|
Classifier: Programming Language :: Python :: 3.5
|
|
Requires-Dist: argparse; python_version=="2.6"
|
|
Requires-Dist: ordereddict; python_version=="2.6"
|
|
Requires-Dist: colorama; sys_platform=="win32"
|
|
Provides-Extra: export
|
|
Requires-Dist: jinja2 (>=2.7,<2.8); extra == 'export'
|
|
|
|
::
|
|
|
|
___ ___ ___ ___ ___ ___
|
|
/\__\ /\ \ /\__\ /\ \ /\__\ /\ \
|
|
/:/ / /::\ \ /::| | /::\ \ /:/ / /::\ \
|
|
/:/__/ /:/\:\ \ /:|:| | /:/\:\ \ /:/__/ /:/\:\ \
|
|
/::\ \ ___ /:/ \:\ \ /:/|:| |__ /:/ \:\ \ /::\ \ ___ /:/ \:\ \
|
|
/:/\:\ /\__\ /:/__/ \:\__\ /:/ |:| /\__\ /:/__/ \:\__\ /:/\:\ /\__\ /:/__/ \:\__\
|
|
\/__\:\/:/ / \:\ \ /:/ / \/__|:|/:/ / \:\ \ \/__/ \/__\:\/:/ / \:\ \ /:/ /
|
|
\::/ / \:\ /:/ / |:/:/ / \:\ \ \::/ / \:\ /:/ /
|
|
/:/ / \:\/:/ / |::/ / \:\ \ /:/ / \:\/:/ /
|
|
/:/ / \::/ / /:/ / \:\__\ /:/ / \::/ /
|
|
\/__/ \/__/ \/__/ \/__/ \/__/ \/__/
|
|
|
|
|PyPI| |Build Status| |Code Health|
|
|
|
|
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: http://ddollar.github.com/foreman
|
|
|
|
.. |Build Status| image:: https://secure.travis-ci.org/nickstenning/honcho.svg?branch=master
|
|
:target: http://travis-ci.org/nickstenning/honcho
|
|
:alt: Build Status
|
|
|
|
.. |Code Health| image:: https://landscape.io/github/nickstenning/honcho/master/landscape.svg?style=flat
|
|
:target: https://landscape.io/github/nickstenning/honcho/master
|
|
:alt: Code Health
|
|
|
|
.. |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: http://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``.
|
|
|
|
|