Windmill

W

Windmill

Join the community to ask questions about Windmill and get answers from other members.

Join

help

general

changelog

Interface language localization

Will the interface language be selectable?

How to process the uploaded file with a python script?

I'm just starting to play with windmill. A a first try, I want to create a simple demo app which has one file input component and one table. After a user uploads a CSV file, I want to use python script to process the file and show it with the table. By reading the documentation, I know there's a onFileChange event handler after a file is uploaded, but I have no idea how to write python code to bind to it. The right-side panel of file-input showed (as attached): No Event handlers...
No description

Passing heavy data into the shared folder as part of the flow

Hello, I created a script in Windmil that gets some data from Supabase. The result that I get is too large so I get this error message: Could someone explain to me how I do pass data to a shared storage in Python? I couldn't find it in the documentation. Thanks!...
No description

Creation of accounts in the instance

After I deployed using the source code, I found that I could not create a new account in the instance, and it told me that this was not an open source feature. In addition, when I logged into Windmill for the first time, I was unable to create an account to overwrite the default account.

Setting the number of workers

I have deployed windmill from source code, but I found that there is only one worker. How can I increase the number of workers?just like modifying windmill_worker in the docker-compose file when using docker deployment

401 Unauthorized Webhook between TwentyCRM and Windmill

Hey, We are using the Webhook connection between TwentyCRM and Windmill (Pro), both in self-hosted version. We tried it with different access tokens, changed token configuration, seems like the tokens are vanishing in Windmill after Saving and Reopening the Flow? The Token vanishes in the token input field but when clicking "Create a Webhook-specific Token" are still listed in the settings but not in the Authorization of the Webhook (independent of Header or Query type). ...

Schedule not running reliably

Hi not sure if this is a bug or my issue - my scheduled job is very unreliable in running. It should be running every 12 minutes but the next run is not for several hours.
No description

Triggering seperate flow through web hook

When trying to set the input and trigger a flow using webhooks, I can see that it listens for my http request AND reflects changed data I’m sending it with the POST request, but the flow isn’t being triggered to run?

Writing data to external Azure Blob Storage

Hello, I want to write a function that will write some data into the Azure Blob Storage. From my understanding, I need to install azure package to do that as I'm using the BlobServiceClient (example of the function attached). Questions: 1) How can I install this package within the script ? ( I can't see a way to open a terminal inside it)...
No description

Issue with Extracting HTTP Cookies for Google Login and Logout Functionality - Video Attached

Hey guys, I am encountering an issue with extracting HTTP cookies within my Windmill app. I've attached a short video demonstrating the problem: Successful Google Login: As you can see in the video at [00:00:00 - 00:00:22], the "Sign in With Google" functionality is working correctly. Upon successful authentication, the application sets an HTTP-only cookie named sharpesense_session_id in the browser. This cookie is visible in the browser's developer tools under the "Application" tab, as shown in the video....

mcp servers

Hello, 1- Please look into exposing windmill workflows as MCP servers. 2- deploying community MCP servers in windmill. ...

I am trying to run a Meltano job using Windmill.dev. Does anyone has seen this use case be

With Temporal.io I have a custom worker image with my meltano library and configs, so when a job is trigger, the worker runs the job In windmill, can I add in the worker a certain set of libraries per default? Should/can I create a custom docker image so that I could use a shell and call directly for example meltano run.... ? Or will the shell part of Windmill create a separate shell that does not contain the libraries from the host?...

My user credentials stop working

Hi guys, I have a self-hosted instance, my credentials are stored in my browser, i am the only user and super admin, for some reason i don't know yet, my credentials are not working anymore, is there a way to recover the access to the windmill installation without losing my scripts and apps?

GUI Down

Getting an error within docker for the windmill-server: PG lock already acquired by another server or worker, retrying in 5s. (look for the advisory lock in pg_lock with granted = true)

How to serve Windmill in a path?

Hi there, I'd like to embed Windmill (WM) in a service platform with a single domain name "myserver.com". To access WM, I'd like to define a path like myserver.com/windmill. In order to leave the standard docker deployment untouched, I consider adding a Nginx reverse proxy on top (like depicted in the enclosed). When I "proxy_pass" it in my Nginx script it says "502 Bad Gateway", because obviously the svelte app has been instructed of the used /windmill path. How can I instruct the windmill server to accept the path ?...
No description

Bunfig & Monaco

Monaco seems able to resolve types for public packages on npmjs.com but doesn't appear to resolve types for private packages specified in Bunfig. Bunfig works: I'm pulling in my private packages at runtime without issue. But Monaco always gives me a Cannot find module [...] or its corresponding type declarations.(2307)...

Scheduled job caching

The following python Script is imported by a Flow which is run via a Scheduled Job. However the response of the request seems to be cached for 24hours or until the flow is run manually. And so despite not having enabled the caching feature of the Script or the Flow. Is there another setting which might be responsible for such behavior? import requests def main(): url = "https://vuldb.com/?export.cvejson"...

How to get resource/variable running locally via vscode ?

I'm little confused with the setup and docs are not really helping with it.

I have a situation where there are lot of jobs waiting to be executed but i would like to d

Hi there, Could you please suggest a solution? I’ve tried using the "Cancel All" button, but it doesn’t seem to clear the queue. The only method that works is manually opening each task and canceling them one by one. However, with over 1,000 entries, this approach would take forever. Is there a more efficient way to handle this?...
No description

Validate text input with pattern

So I'm in the process of building a form that needs to reference some off system data. Along with that I need to provide an input box with strict requirements. I know how to do this using the "forms" component, but I dont seem to be able to do this with the standard text input component. on the other hand, if I use the forms component, I cant pull in the external data, but I can provide validation in the input box. Is there a world where I can have both with either only the form component or non-form components (from a UI/UX standpoint this would be preferable)?...