Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. App Wishlist
  3. Windmill: Open-source alternative to Airplane, Superblocks, Retool

Windmill: Open-source alternative to Airplane, Superblocks, Retool

Scheduled Pinned Locked Moved App Wishlist
15 Posts 9 Posters 2.3k Views 10 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • E Offline
    E Offline
    ebauger
    wrote on last edited by
    #5

    With n8n, it's a must have in Cloudron

    1 Reply Last reply
    2
    • robiR Offline
      robiR Offline
      robi
      wrote on last edited by
      #6

      @Kubernetes ?

      Conscious tech

      1 Reply Last reply
      0
      • S Offline
        S Offline
        simong
        wrote on last edited by
        #7

        Thanks for the suggestion. This has everything I miss in n8n.
        I run it on coolify and it doesn't require much configuration.

        1 Reply Last reply
        1
        • robiR Offline
          robiR Offline
          robi
          wrote on last edited by
          #8

          New docs for self-hosting link: https://www.windmill.dev/docs/advanced/self_host

          This is very similar to what @andreasdueren is currently packaging, so a reuse of the pattern will be useful.

          Conscious tech

          1 Reply Last reply
          3
          • canadaduaneC Offline
            canadaduaneC Offline
            canadaduane
            wrote last edited by
            #9

            I've been dabbling with trying to create a Windmill on Cloudron container. It's more difficult than other apps. Some notes:

            • There is a hard-coded set of ROLEs required of the postgres database: windmill_admin, and windmill_user. Windmill uses these in DB migration scripts as well as during runtime to control access and access levels (see this section). As far as I can tell, Cloudron's postgres does not offer flexibility to add new roles in the database.
            • Windmill's LSP (Language Server Protocol) is itself a docker container with various programming languages (node, deno, python, etc.) pinned to certain versions. Because of these pinned versions, it is difficult to integrate into a single container along with the rest of Windmill. This suggests the docker Cloudron addon may be necessary.
            • Windmill also runs workers within docker containers. This may also require the docker Cloudron addon.

            In my effort to get most of Windmill running inside the same container, I have supervisord running with the following processes:

            • caddy
            • windmill-server
            • windmill-worker

            Caddy (or similar) is needed in order to act as reverse proxy for both windmill-server and the windmill-lsp container's websocket service.

            The biggest issue at this point is the hard-coded windmill_admin and windmill_user postgres roles. I'm not sure how to get around this other than to create a separate postgres DB, unfortunately.

            robiR 1 Reply Last reply
            2
            • canadaduaneC canadaduane

              I've been dabbling with trying to create a Windmill on Cloudron container. It's more difficult than other apps. Some notes:

              • There is a hard-coded set of ROLEs required of the postgres database: windmill_admin, and windmill_user. Windmill uses these in DB migration scripts as well as during runtime to control access and access levels (see this section). As far as I can tell, Cloudron's postgres does not offer flexibility to add new roles in the database.
              • Windmill's LSP (Language Server Protocol) is itself a docker container with various programming languages (node, deno, python, etc.) pinned to certain versions. Because of these pinned versions, it is difficult to integrate into a single container along with the rest of Windmill. This suggests the docker Cloudron addon may be necessary.
              • Windmill also runs workers within docker containers. This may also require the docker Cloudron addon.

              In my effort to get most of Windmill running inside the same container, I have supervisord running with the following processes:

              • caddy
              • windmill-server
              • windmill-worker

              Caddy (or similar) is needed in order to act as reverse proxy for both windmill-server and the windmill-lsp container's websocket service.

              The biggest issue at this point is the hard-coded windmill_admin and windmill_user postgres roles. I'm not sure how to get around this other than to create a separate postgres DB, unfortunately.

              robiR Offline
              robiR Offline
              robi
              wrote last edited by
              #10

              @canadaduane said in Windmill: Open-source alternative to Airplane, Superblocks, Retool:

              The biggest issue at this point is the hard-coded windmill_admin and windmill_user postgres roles. I'm not sure how to get around this other than to create a separate postgres DB, unfortunately.

              The design here is clearly more suited towards isolated deployments, so it might be good to reach out to the devs to see if they can find a way to accommodate..

              Conscious tech

              1 Reply Last reply
              1
              • canadaduaneC Offline
                canadaduaneC Offline
                canadaduane
                wrote last edited by
                #11

                We have a working Windmill instance on Cloudron, (container) released with MIT license here:

                https://github.com/halecraft/windmill-cloudron

                The compromise we had to make here was to embed a Postgresql server inside the container, rather than connect to the one provided by Cloudron's postgres addon. Short of modifying Windmill itself, this was the only way we could give Windmill the full control over the Postgres instance that it needs / assumes it has.

                M 1 Reply Last reply
                4
                • canadaduaneC canadaduane

                  We have a working Windmill instance on Cloudron, (container) released with MIT license here:

                  https://github.com/halecraft/windmill-cloudron

                  The compromise we had to make here was to embed a Postgresql server inside the container, rather than connect to the one provided by Cloudron's postgres addon. Short of modifying Windmill itself, this was the only way we could give Windmill the full control over the Postgres instance that it needs / assumes it has.

                  M Offline
                  M Offline
                  msbt
                  App Dev
                  wrote last edited by
                  #12

                  @canadaduane cool, but it seems it's not yet available to the public 😉

                  canadaduaneC 1 Reply Last reply
                  2
                  • M msbt

                    @canadaduane cool, but it seems it's not yet available to the public 😉

                    canadaduaneC Offline
                    canadaduaneC Offline
                    canadaduane
                    wrote last edited by
                    #13

                    @msbt said in Windmill: Open-source alternative to Airplane, Superblocks, Retool:

                    @canadaduane cool, but it seems it's not yet available to the public 😉

                    Oops! My MIT-licensed code is now public 😏

                    1 Reply Last reply
                    2
                    • girishG Offline
                      girishG Offline
                      girish
                      Staff
                      wrote last edited by
                      #14

                      @canadaduane awesome, added to our internal list

                      1 Reply Last reply
                      0
                      • girishG Offline
                        girishG Offline
                        girish
                        Staff
                        wrote last edited by
                        #15

                        When building I got

                        Step 25/27 : COPY windmill/init-db-as-superuser.sql /app/code/init-db-as-superuser.sql
                        COPY failed: file not found in build context or excluded by .dockerignore: stat windmill/init-db-as-superuser.sql: file does not exist
                        Failed to build app. See log output above.
                        
                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • Bookmarks
                        • Search