A friendly file based stateful daemon tracker.
Install from crates.io
cargo install eggsecutor
Build manually from source
sh
$ git clone https://github.com/astherath/eggsecutor
$ cd eggsecutor
$ cargo install --path=.
eggsecutor
works best when launching single-file binaries that are meant to run as background processes.
``` eggsecutor 1.0
astherath me@felipearce.dev
A friendly background process task manager
USAGE: eggsecutor [SUBCOMMAND]
OPTIONS: -h, --help Print help information -V, --version Print version information
SUBCOMMANDS: clear stops all of the processes being tracked and clears the tracking list hatch start managing a binary process help Print this message or the help of the given subcommand(s) list list all managed processes stop stop a process by name or pid ```
A simple example that should run as-is to showcase the main usage loop (flask and python3 required)
```sh
cat << EOT >> FLASK_SERVER
from flask import Flask
app = Flask(name)
@app.route("/") def index(): return {"status": 200}
if name == "main": app.run() EOT
chmod +x FLASK_SERVER
eggsecutor hatch FLASK_SERVER
Hatching process "FLASK_SERVER" and starting to track... egg hatched, tracking process with pid: "3670"
eggsecutor list
Process name pid status
FLASK_SERVER 3670 Running
eggsecutor stop FLASK_SERVER eggsecutor stop 3670
stopping process with pid: 3670
eggsecutor clear ```
By design, eggsecutor
is meant to be a low-maintenance (and therefore, low-option) tool.
The only user-defined variable is the location of the JSON state tracking file, which defaults to
~/.eggsecutor.state
If need be, this path can be overwritten by setting the EGGSECUTOR_STATE_FILE
environment variable to a valid file path (if the path does not exist, it will be created upon first usage).