nickstenning / honcho

Honcho: a python clone of Foreman. For managing Procfile-based applications.
http://pypi.python.org/pypi/honcho
MIT License
1.59k stars 145 forks source link

Idea: web interface #166

Closed abesto closed 8 years ago

abesto commented 8 years ago

Wondering what the general feeling is about something like a web interface for managing processes run by Honcho, for local development environments. Couple of things that could make it useful:

Is this an obviously bad idea for a reason I don't see? Is there already something like this? Should this be developed as part of honcho, or a stand-alone tool / wrapper?

nickstenning commented 8 years ago

This sounds like a great idea, but it would probably entail a fair number of additional dependencies, and thus I'd be reluctant for this to be part of Honcho itself. It is possible to use Honcho as a library rather than a command-line tool, so I'd suggest a standalone package that uses Honcho in this way is probably the best place to experiment with this idea.

Let us know if you build something and I'll happily link to it from our documentation!

abesto commented 8 years ago

Thanks for the input, makes total sense.

I've since started experimenting with an implementation using Meteor. That's node.js, so not based on Honcho. In case you're curious: https://github.com/abesto/procfile-web. (The main attraction is fast prototyping and native support for websockets, useful for streaming logs)