Diego Sogari

Results 22 comments of Diego Sogari

> [!IMPORTANT] > You can register a Terraform Cloud Agent to run your pipelines. For people who might still be struggling with this issue, here are some resources that can...

Hi everybody! Would it be possible to allow credential configuration in the resources themselves? For example, it would be great if I could could declare a Kubernetes resource with the...

@43081j what if I want to throw `undefined`? Just kidding 😄

Seriously though, couldn't the initial value be a dummy object? [Like this]: ```ts const noError = {}; var caughtErr = noError; // ... caughtErr !== noError ``` [Like this]: https://www.typescriptlang.org/play?#code/MYewdgzgLgBGIFEBOSRJgXhgbwL4G4BYAKCiQE8cSYaYoALVAdxwJNxmAEMph6YAFAFMUASirFancBBAAbIQDo5IAObCUMAIQYs8ZKiSiixXCSA

For people who are still struggling with this issue, the workaround (as mentioned in https://github.com/kieler/elkjs/issues/178#issuecomment-1268576312) is to remove the options: ```js 'elk.algorithm': 'layered', 'elk.hierarchyHandling': 'INCLUDE_CHILDREN', ``` from the following places:...

This can be achieved with a symbolic link. For example, if my public folder is named `dist`, I would call: ```sh ln -snf "`pwd`/dist" dist/ && serve dist ``` The...

@hybridherbst They would be served both with _and_ w/o the base path. For testing local deployments (which is what we're trying to achieve), this should be enough.

Hello there. Thanks for making this project available, and forgive me in advance for the criticism. :P Let me share a small complaint about the differences in command-line options between...

@Julusian > I think this will require some thought on how to approach, as one of the nicer things cmake-js does is provides a few simple 'one-liners' which would otherwise...