You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Automation Engine for the Hyperpolymath Ecosystem.
MacroPower.jl is a low-code/no-code style automation tool for Julia. It allows you to define "Flows" that connect events (File System, HTTP, Time) to actions (Run Script, Send Alert, Database Write).
Quick Start
using MacroPower
# Define a flow
flow =@workflow"Nightly Backup"beginwhen(time_is("02:00")) ->backup_database()
when(file_changed("/tmp/data")) ->process_data()
endrun_workflow(flow)