josephkirk / JobRunner

Simple Rust Job Runner

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple Job runner

Simple job runner from json config file using tokio-cron-scheduler

json config file format:

[
    {
        "name": "Job1",
        "schedule": "1/5 * * * * *",
        "process": "cmd",
        "command": "/C echo Hello World"
    },
]

schedule is in cron expression format "sec min hour day of month month day of week year"

About

Simple Rust Job Runner


Languages

Language:Rust 100.0%