shep 0.1.7

The shep binary: a process manager that keeps a flock of long-running processes alive on macOS and Linux, with logs, watch and cron restarts, and webhook alerts
Documentation
1
2
3
4
5
6
7
//! The `shep-runtime` container-entrypoint alias. Everything it does lives in
//! the library beside it — this binary supplies the `runtime` verb.
#![forbid(unsafe_code)]

fn main() -> std::process::ExitCode {
    shep::main_runtime()
}