Adrian Hesketh
Adrian Hesketh
Did you get anywhere with this? One of the things I like about quicktemplate is that you just write Go code, rather than having to have a custom loop syntax...
Looking into this a bit further, I think the best approach might be to create an LSP for quicktemplate and to add the required features one-by-one. `gopls` doesn't seem to...
I got a "Hello World" running in Neovim. It doesn't actually do anything useful, just returns a constant for autocomplete requests. Here's what that looks like: https://asciinema.org/a/D0efR6Inmel9JHEZiqHxbCSuR Here's the demo...
I had a look at implementing the idea in quicktemplate, but the templating language felt a bit too complex to bite off adding the features in one go (things like...
This looks like it might be resolved in https://github.com/machinebox/graphql/pull/47 - but it's not been merged yet.
The config was updated in this commit https://github.com/TylerBrock/saw/commit/0084ddcdbaf72e2499e77194074f6ada584478ff But it's now failing because Circle CI can't download the code, presumably due to needing to re-setup Circle CI to have access...
I took a look at this, and it looks like the `.goreleaser` project is already properly configured for Apple Silicon: https://github.com/TylerBrock/saw/blob/master/.goreleaser.yml The `circle.yml` build process is using the latest `golang:alpine`...
Thanks for the response @jpignata - did you see the bit where I use `graphqurl` to work with a subscription using OIDC and that didn't work either? I understand that...
@LuisMourao - If it helps, I decided not to use AppSync for my project because I ran into so many problems. I wrote up my experience at https://adrianhesketh.com/2021/02/22/setting-up-appsync-graphql-subscriptions-with-typescript-and-cdk/
In my projects, we use separate AWS accounts for each environment (testing, staging, production). The use of assets somewhat leads you down the path of one branch per environment in...