Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/glop102/webautotender

A Framework and WebUI to automate longer term tasks. Like Cron but with a minor scripting language and state.
https://github.com/glop102/webautotender

Last synced: about 1 month ago
JSON representation

A Framework and WebUI to automate longer term tasks. Like Cron but with a minor scripting language and state.

Awesome Lists containing this project

README

        

# WebAutotender
Essentially this is another take on a CI pipeline, but for general processsing and not code development.

This is intended to be a more general and more useful rep0lacment for my RSS Feed automator which did processing on RSS Feed data and the configuration was in a text file.

### General Usage

There are two main items that you will interact with; Workflows and Instances.

Workflows are static but contain the steps that the processing will take.
Instances contain state, and follow the steps of its given Workflow.

By default, nothing happens in the program. There are currently no triggers to autonomously react to triggers.
So first, make a Workflow that will be your own custom trigger - eg polls periodically to check for RSS Feed updates.
Then make an instance of that Workflow that will actually run and do the polling.

Second you make a workflow that handles processing the trigger - eg grabbing something from the feed and doing something.
The triggering instance needs to have a step to spawn a new instance, but using the processing workflow.

### Test Env Setup
```
python -m venv venv
pip install uvicorn fastapi
source venv/bin/activate
```