Windmill

W

Windmill

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

Join

help

general

changelog

dependencies mapped in deno.json

As the project grows it would be nice to be able to use the import-map capability of deno.json https://docs.deno.com/runtime/manual/basics/import_maps Now that deno add can insert packages into deno.json from npm and jsr it's preferred over URL imports....

Did something change in for loops?

Retries seem to be not triggered on failing for-loops anymore.

Using private GitHub-Repo with composer

I'm currently trying to include a private repo from GitHub into a PHP script using that require-syntax on top of the script. Currently I'm trying: ``` // require: // git@github.com:my-org/my-private-repo.git...

Gsheets & Python

gsheets and python example, anyone? Init, auth part, thanks!

Windmill Loops vs. Python Loops of wmill.run_async

Hello, Windmill Community Can someone break down for me what would be the difference between looping with Windmill Built-in loops vs this: ```...

typescript client in cloudflare workers

I was using wmill typescript client from my cloudflare workers but it stopped working today: ``` āœ˜ [ERROR] service core:user:my-app: Uncaught ReferenceError: process is not defined cloudflare-backend:dev: ...

Suddenly getting "Error: Variable not found ... or not visible to you" for my schedules

I haven't changed anything and it has worked for a long time. Did something change? Full message: Error: Variable not found at u/*USER*/*MY_KEY* or not visible to you: Unauthorized...

App Help

Say I want to build an app where someone drops a CSV file and I parse it, do a python script and then display in a table. Can I hide the table while its getting the results? Currently the table element just shows a spinning loading wheel while it waits.
No description

Python LDAP

Have a script that uses "python-ldap". My python script has an import of "import ldap". Windmill tries to use a package of ldap instead of the python-ldap. I get and error of '"ldap" is not installable. You probably want python-ldap.' Any suggestions?

Skip auto-registering scripts in wmill

I have a bunch of lib files that i don't need to be registered as scripts, however just not having main still doesn't prevent wmill from auto creating scripts out of them.

Telling Windmill to use `deno` runtime not `bun`

I'm sure this has a really obvious answer but I wasn't able to find one in the docs nor by searching deno here on the Discord šŸ™‚ I want to write a script using the deno runtime in Visual Studio Code but it seems to be defaulting to using bun. Is there an obvious part I'm missing to guide Windmill to use whichever runtime?...
No description

Debug Webhook 500 error from Tally

Hi, I'm trying to post a form submission from Tally via webhook. I'm able to mock the webhook call via Postman, including Authorization Bearer token and json body; but when tally tries to call the webhook itself, i get a 500 response. Is there any way to debug the call to find what is causing the 500? I'm on windmill cloud.

Unable to save script as draft

Error while saving the script as a draft: Sql error: no rows returned by a query that expected to return at least one row

Call non public apps as iframes?

I naively tried that: https://www.loom.com/share/a46821e384d54a1b8b49c860b558c277 It probably doesn't work because the origin url is bluewind.ai ...

Python dependency managment issue withPyMuPDF

I'm tyring to use PyMuPDF to do some PDF operations, I get the following error ```job 018f95c5-bbf5-0662-29b8-e549ac3b7426 on worker wk-worker-239.ec2.internal-D5Wi2 (tag: python3) ...

SSO without restricted domain?

Is there a way to do SSO but without restricted domain? This would effectively allow anyone to sign up to my windmill workspace as long as they have a google account.

[Solved] Frontend script call backend script, do UI stuff and download the returned data as file

Hello everyone, new windmill user here. Trying to grasp how windmill works and building a small internal app at the same time. I'm trying to wrap my head how I can have my own frontend script run a backend script, get the result, do some UI stuff based on the result and download it on the user's computer (through the normal browser's download dialog). I see that a backend inline script "just works" without any additional action from me. But what about when I need to run that backend script from a frontend script and do something with the results (including downloading it)? ...

CLI error: this.settings.reader.isTerminal is not a function

wmill workspace add bluewind bluewind https://bluewind.windmill.dev/ error: Uncaught (in promise) TypeError: this.settings.reader.isTerminal is not a function const isTty = this.settings.reader.isTerminal();...

Reference component with MySQL

Hello, I've got a MySQL database and want to include the properties of a rangeslider component in my SQL query. The rangeslider has the id h and result[0] is the min value currently selected. My query currently looks like this but it does not work, I have tried different ways of referencing the component. SELECT Product, (Unit_Price - Unit_Cost) AS db FROM FullBike GROUP BY Product, db...