Daniel Owen van Dommelen

Results 32 comments of Daniel Owen van Dommelen
trafficstars

Hmm, not sure if I am either understanding the requirement wrong, or I am doing something I should not be doing. I was trying to figure out sort of similar...

Why? It's been a while since I have worked on this so forgive me if I do not see the obvious, but there must be a way to collate all...

Especially since in my previous example I did not halt the main goroutine yet, so the queue could do that. So something like: ``` eventBus := make(chan tea.Msg) queue :=...

It seems the trick would be to authorise the user twice? https://rsirokov.medium.com/shopify-app-online-and-offline-access-modes-8a8c5ecd928b Based more on the shopify-cli version, but I'm sure it could be done somewhere here too... https://github.com/redochka/nextjs-shopify-app-no-custom-server/blob/main/lib/shopify.js

> @hectron Yes, confirmed. The output of the last build step is the following: > > ``` > Step 11/12 : RUN nvim -es -u /home/dev/.config/nvim/init.vim -i NONE -c "PlugInstall"...

Also I ended up using the below in the Dockerfile, and removing the auto-install bit in the `.vimrc` completely. ```bash RUN curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim \ && vim +PlugInstall...

Didn't I read or hear somewhere the NodeJS stuff will be moving towards Express? In all honesty, I don't even know what I am saying, because I am not really...

@behivetech The 24-hour issue is quite easily solvable using offline access tokens. I mean, I say easy, I only found out yesterday :p But implementing is easy. ``` server.use( createShopifyAuth({...

@behivetech I don't know what you're talking about, to be honest (like I said, not super familiar with NodeJS or anything around it), this is how I have it in...

Ah, mind you, I am not using that custom NextJS repo, I am using the NextJS code generated by the shopify-cli So in the case of that other repo, it...