{"id":13500168,"url":"https://github.com/nickstenning/honcho","last_synced_at":"2025-05-13T00:29:26.662Z","repository":{"id":2712563,"uuid":"3706909","full_name":"nickstenning/honcho","owner":"nickstenning","description":"Honcho: a python clone of Foreman. For managing Procfile-based applications.","archived":false,"fork":false,"pushed_at":"2025-02-15T13:41:05.000Z","size":412,"stargazers_count":1620,"open_issues_count":22,"forks_count":146,"subscribers_count":33,"default_branch":"main","last_synced_at":"2025-04-18T17:32:41.396Z","etag":null,"topics":["devtools","operations","python"],"latest_commit_sha":null,"homepage":"http://pypi.python.org/pypi/honcho","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nickstenning.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-03-13T13:44:30.000Z","updated_at":"2025-04-15T20:11:21.000Z","dependencies_parsed_at":"2024-12-10T03:04:35.872Z","dependency_job_id":"88f89029-c5bd-40c5-822b-9e73d56ef86e","html_url":"https://github.com/nickstenning/honcho","commit_stats":{"total_commits":363,"total_committers":49,"mean_commits":7.408163265306122,"dds":"0.35812672176308535","last_synced_commit":"8af63177405a574612abf90ef55aaa68d76f7686"},"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickstenning%2Fhoncho","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickstenning%2Fhoncho/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickstenning%2Fhoncho/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickstenning%2Fhoncho/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nickstenning","download_url":"https://codeload.github.com/nickstenning/honcho/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250495178,"owners_count":21440119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["devtools","operations","python"],"created_at":"2024-07-31T22:00:52.236Z","updated_at":"2025-04-23T18:45:45.330Z","avatar_url":"https://github.com/nickstenning.png","language":"Python","readme":"::\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? \u003c//honcho.readthedocs.io/en/latest/#why-did-you-port-foreman\u003e`_\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 \u003eProcfile \u003c\u003cEOM\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 \u003e.env \u003c\u003cEOM\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","funding_links":[],"categories":["DevOps Tools","Process Manager","资源列表","Python","DevOps 工具","DevOps Tools [🔝](#readme)"],"sub_categories":["Procfile","DevOps 工具"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickstenning%2Fhoncho","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnickstenning%2Fhoncho","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickstenning%2Fhoncho/lists"}