diff --git a/README.md b/README.md index 378b50e7ef..63383199fa 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ send an email to ruben@windmill.dev (founder and creator of Windmill). especially concerning flows.

-![Windmill Screenshot](./imgs/windmill.webp) +![Windmill Screenshot](./imgs/windmill.png) Windmill is fully open-sourced: @@ -56,19 +56,19 @@ Windmill is fully open-sourced: 1. Define a minimal and generic script in Python or Typescript that solve a specific task. Here sending an email with SMTP. The code can be defined in the provided Web IDE or synchronized with your own github repo: - ![Step 1](./imgs/step1.png) + ![Step 1](./imgs/python-script.png) 2. Your scripts parameters are automatically parsed and generate a frontend. You can narrow down the types during task definition to specify regex for string, an enum or a specific format for objects. Each script correspond to an app by - itself: ![Step 2](./imgs/step2.png) + itself: ![Step 2](./imgs/arguments.png) 3. Make it flow! You can chain your scripts or scripts made by the community inside flow by piping output to input using "Dynamic" fields that are just plain Javascript. You can also refer to external variables, output from any steps or inputs of the flow itself. The flow parameters then generate automatically an intuitive forms that can be triggered by anyone, like for - scripts. ![Step 3](./imgs/step3.png) + scripts. ![Step 3](./imgs/flow.png) ## Layout diff --git a/imgs/arguments.png b/imgs/arguments.png new file mode 100644 index 0000000000..c2365aecf0 Binary files /dev/null and b/imgs/arguments.png differ diff --git a/imgs/flow.png b/imgs/flow.png new file mode 100644 index 0000000000..883ccf163e Binary files /dev/null and b/imgs/flow.png differ diff --git a/imgs/python-script.png b/imgs/python-script.png new file mode 100644 index 0000000000..4fd531771e Binary files /dev/null and b/imgs/python-script.png differ diff --git a/imgs/step1.png b/imgs/step1.png deleted file mode 100644 index 63ec381060..0000000000 Binary files a/imgs/step1.png and /dev/null differ diff --git a/imgs/step2.png b/imgs/step2.png deleted file mode 100644 index d48b1323a6..0000000000 Binary files a/imgs/step2.png and /dev/null differ diff --git a/imgs/step3.png b/imgs/step3.png deleted file mode 100644 index 8db759012a..0000000000 Binary files a/imgs/step3.png and /dev/null differ diff --git a/imgs/ts-script.png b/imgs/ts-script.png new file mode 100644 index 0000000000..643023dac7 Binary files /dev/null and b/imgs/ts-script.png differ diff --git a/imgs/windmill.png b/imgs/windmill.png new file mode 100644 index 0000000000..06752e2d11 Binary files /dev/null and b/imgs/windmill.png differ