cronspark-cli
v1.0.0
Published
Command-line interface for CronSpark — schedule, monitor and manage HTTP cron jobs from your terminal.
Maintainers
Readme
cronspark-cli
Command-line interface for CronSpark — schedule, monitor and manage HTTP cron jobs from your terminal.
Install
npm install -g cronspark-cliAuthenticate
Generate an API key from the CronSpark dashboard (Settings → API Keys), then:
cronspark login cronspark_xxxxxxxxxxxxxxxxThis stores your key in ~/.cronspark/config.json. You can also set CRONSPARK_API_KEY (and optionally CRONSPARK_API_URL for self-hosted instances) as environment variables instead.
Usage
cronspark jobs list
cronspark jobs get <id>
cronspark jobs create --name "Ping" --url https://example.com/health --interval 300
cronspark jobs create --name "Daily report" --url https://example.com/cron --cron "0 9 * * *" --method POST
cronspark jobs update <id> --no-active
cronspark jobs trigger <id>
cronspark jobs delete <id>
cronspark jobs badge <id>Run cronspark help for the full list of options.
