Honcho
A process manager for your Procfile(s).
Installation
Add the following to your deps in mix.env
{:honcho, "~> 0.2"},
Add a file Procfile to your project. Procfiles are defined in the following
format:
<process name>: <command>
Usage
Honcho will add several mix tasks your your project, including:
mix honcho.info- prints information about your process definitionsmix honcho.start- will start your process
These tasks take the following optional arguments:
-p, --procfile- a path to a Procfile. This defaults to a file,Procfile, in the current working directory.