Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 750 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 750 Bytes

Mule logo

Mule

Mule is a generalized automation framework for organizing the execution of defined automation in a declarative yaml format. To consume it, a user only needs to write a yaml file that defines tasks they wish to execute and jobs that execute their order. Below is an example of a basic mule.yaml file. For more information, see our getting started guide!

tasks:
- task: Echo
  name: A
  message: A

jobs:
  job-a:
    tasks:
    - Echo.A

Install

To install mule using pip, use:

pip install mulecli

Navigation