Super Hog is a kind of process runner
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
HerrHase 814bd42b65
adding
2 weeks ago
examples adding 2 weeks ago
packages/runner adding 2 weeks ago
resources adding 2 weeks ago
storage adding 2 weeks ago
.gitignore adding 2 weeks ago
LICENSE adding 1 year ago
README.md adding 2 weeks ago
bun.lockb adding 2 weeks ago
mix-manifest.json adding 1 year ago
package.json adding 2 weeks ago

README.md

super-hog

Super Hog is a kind of process runner. It can be Custimize and build a frame to runs Tasks with different Configurations. Tasks will be configured in a File by Yaml. Like this,

name: "Lorem Ipsum RSS"
url:  "https://lorem-rss.herokuapp.com/feed"
cron: "0 1 * * *"
actions:
    - class: "RssExample"

All Yaml-Files that have to be run, have to put in "resources/config/enabled".

Action

Action Classes are find in "resources/actions". Each Action runs one after another, and his result will be hand over to the next Action Class. For this you have access in each Object to a Docket Object. By Default all data will be set to this.result in a Action. If the class do nothing I/O will be the same.

Docket

The Docket-Object is holds all Data, States and Configurations. It run to all Actions.