Encrypting inputs in webhooks
Hi team, really enjoying working in windmill , had a doubt with my use case, I want to create a webhook, the input is sensitive user data so I want it to be not available anywhere (logs, previous runs) after the flow is done, how can I implement this?
Minio bucket on railway.app and workspace S3 storage
I have no problem connecting to a S3 resource on a railway.app hosted minio bucket using py script and the minio libs from a windmill workspace.
Trying to attach the same S3 resource in the workspace settings is no go.
Where can I find the logs from connection that the UI is trying to perform?...
Error on creating a resource
I am trying to create a resource from a custom definition (attached) and I am getting an error "ze.startsWith is not a function" when I click on the SAVE button. We have Version v1.251.1
Error executing flow
I have a flow that runs a for loop in parallel. The last node of this for loop throws this error and not proceed to the next node, get stucked forever?
{
"error": {
"name": "InternalErr",...
How to sign up as a new user?
Hi all, newbie here!
I've just tried the self-hosted version from railway.app. On the front-screen there's a login but no ability to sign up. How do I get past this?...

Python's Pandas is acting weird although it was fine before
My scripts were working properly before. However, today, I started seeing the pandas module acting strange.
In some random cases, the module isn't found at all and in almost all cases, its functions are not available. Have attached a sample screenshot for the same.
I checked my wmill instance for any files named pandas.py as well as functions that maybe overriding the package. Even a new script with no imports (other than pandas) still behaves weirdly. Any suggestions on how to go about debugging this?...

Unable to create new app on remote
I've developed an application in my local environment but when I go to push the application to my remote deployment with
wmill sync push --skip-pull
I am getting the following error. For clarity other applications in other folders all seem to deploy without problems it is just this particular one that has a problem. The error message is rather vague so I'm struggling to pinpoint what the issue it.
```remote (staging_upgrade) <- local: 1 changes to apply
+ app f/bops/manage-level-framework.app.yaml
? Do you want to apply these 1 changes? (Y/n) › Yes...Questions around licensing
I've got a few questions around use of AGPL as well as enterprise licensing.
1. AGPL suggests that software must be kept open source if changed. I assume I am ok to use it in a commercial setting as long as I don't modify the software, and it stays internal to the company. I assume things that I run via windmill do not get tainted with AGPL, (nor does building a docker image on top of windmill image adding company CA certs).
2. We have a secondary company that provides operational support for us (eyes on glass, 24hr on call), as we don't run that ourselves. We provide the scripts, they make sure they run, rerun in case of failures etc. Is it in breach of the open-source license if we expose windmill scripts to the support company? All the support people would be operators only.
3. My idea to use windmill doesn't really fit in with where windmill positions itself. Namely I am mostly looking for a ui for running and configuring parameterizable cron jobs that can be kicked off ad-hoc (script does some argument validation). The scripts that we'd run via windmill would just do a submission to our internal compute farm, and windmill would mostly sit there in a loop polling for that to complete. The submission starts a process that needs to stay alive (bring back logs, process disappearing suggests cancellation etc), so I can't move the "waiting for it to complete" into some sort of flow loop that reduces the execution time (from windmills perspective). This in nature makes the enterprise license not really viable, as we'd be paying quite a lot for windmill just to sit and sleep in a loop. These jobs that we submit to our compute farm can run for 2-3 days so we'd have scripts that would run for this long in a single script execution. Perhaps windmill is not the right product for us, atleast when it comes to enterprise license?...
Long Running Scripts
Hello, I want to create a telegram bot using grammy.dev as framework. But the script is ended even though I'm using
bot.start();
. Is there any way to make the script run longer?
Here is my code:
```ts
import { Bot } from "https://deno.land/x/grammy@v1.20.3/mod.ts";...I'm getting a strange error about completed job not found when using `wmill flow run`
```
wmill flow run u/tim/charismatic_flow --data @input.json
WaitingForPriorSteps
====== Job 1 ======
Waiting for Job 018d23ac-8d0b-ae20-4640-c1b8124ab1ee to start......
Forking an app doesn't change paths in the hiddenInlineScripts
Hello, I've noticed that when I fork my app to a new path/name, the paths do not change when I look at the app.json, they just get coppied over.
However I'm on reaaaly old version, so maybe it's already been fixed....
missing input in flow
hello everyone, i searched in the doc and in github issues, and did not found an answer for my problem, i hope it has not already been asked and i am not missing an obvious setting...
I am trying in my flow to get the result of a first step and use it as an input for my second step, but i do not see the plug button or something like this...
When i edit the script separately i have the inputs on the UI, but nothing in the flow screen......
What is meant by node id in windmill workflow engine and how to get it
I am using Windmill workflow engine to create jobs and run them
I am running jobs asynchronously.
For that I first create a job and then that returns me a job-id and I use this job-id to get the result....
Proper Powershell.exe in WSL possible?
I have Windmill running on WSL2 Ubuntu via docker-compose. I added another Worker that runs the Windmill binary directly on the WSL2 Ubuntu (as there is no Windows binary yet).
I had hoped running the Binary directly on the WSL would let me get access to the Powershell.exe but unfortunately Windmill uses /usr/bin/pwsh by default which is Powershell Core and has a couple of features missing (WSMan mostly) that I need to introduce Windmill at work. A WSL Ubuntu uses the "full" Powershell.exe under "/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe". I tried adding that path as env variable POWERSHELL_PATH, renaming it, aliasing it, linking it... nothing worked.
I'm thankful for any tips or recommendations how to get anything but Powershell Core running. I know Windows and Powershell dont have priority for Windmill but is there a Windows Binary planned in the future or any way to use the wsl powershell.exe?...
For loops worker usage
I'm creating a for loop that runs a script with an sleep inside of it.
I want to loop forever or until stopped, and after running the script we have a very long wait time (15 minutes)
I wonder if this approach is charging me for that wait time...

How to have a single Windmill act as a central space for multiple Windmill instances?
Hi, I currently have 1 self-hosted windmill container each running on 'n' different AWS EC2 instances (1 * n = n Windmill containers).
And I am finding this hard to manage since I need to visit each Windmill's URL individually (need to have 'n' different URLs/UIs) to trigger scripts/flows and view their states.
Is there a way (preferentially, out-of-the-box) where I can have 1 Windmill container coordinate with all my other instances. The central windmill container would have access to all my scripts/flows residing in other machines and serve as a single UI to manage everything. To clarify, I still want the scripts and flows to run in their own respective machines and the central Windmill instance would only help for triggering these scripts/flows and showing their states as if I was interacting with the individual instance's UI itself....
Is there a way (preferentially, out-of-the-box) where I can have 1 Windmill container coordinate with all my other instances. The central windmill container would have access to all my scripts/flows residing in other machines and serve as a single UI to manage everything. To clarify, I still want the scripts and flows to run in their own respective machines and the central Windmill instance would only help for triggering these scripts/flows and showing their states as if I was interacting with the individual instance's UI itself....
Airplane to Windmill migration
What is the process for helping our team migration airplane tasks to windmill scripts?