Rust process manager inspired by supervisor, with a terminal UI and TOML configuration files.
It can launch multiple programs, apply restart policies, and log output to files or journald.
At startup, taskmaster loads a TOML configuration file, spawns programs with start_policy = "auto", and then keeps a main loop running for process supervision, signal handling, and TUI rendering.
Programs can define process count, restart behavior, exit policies, stdout/stderr targets, environment variables, working directory, user, umask, and stop signal handling.
The config can be reloaded at runtime, so the manager can update, stop, or start programs without restarting the whole application.
cargo run -- config/default.tomlcargo test[[program]]
name = "date"
command = "date"- The bundled
config/default.tomlis more of a feature demo than a production-ready example. - The TUI is designed for an interactive terminal.
- The project is Unix-oriented and uses signals and process control APIs directly.
