Dan
Dan
Hate to be the "me too" guy... but me too :(
+1 Is there any way I can prod the button to update programmatically? I receive the an event once the video is fully loaded so I could just launch a...
In Postgres you can run something like this to make this work: alter database DB_NAME set search_path = public, SCHEMA_ONE, SCHEMA_TWO, SCHEMA_ETC;
That setting is global for the database. Issue mentions that hasura fails to find the type in the correct schema. If you change the sarch_path you will no longer need...
> I can confirm that this issue is still happening and seems to be related to barrel exports with `import * from ...` syntax. Adding an empty `/pages` folder was...
Did you make any progress on this? I'm also looking to integrate with monaco client server kind of setup We have a monaco editor running on the client's machine in...
There are a couple examples online https://github.com/arnoson/monaco-lua-example/tree/main they wrap the lls with a simple typescript websockets server. I'm trying that in docker. So far so good. Will keep updating in...
> Even if it is connected through a socket, luals must be in the same place as the runtime environment., because if the language server and the target workspace are...
We've managed to get it to work in Docker with monaco being hosted as part of our webapp with lua-ls making it work via websockets. So it seems to be...