xxxxxxxxxx
wget {{ bin_url }} -O helmfile_linux_amd64
Example
wget -O helmfile_linux_amd64 https://github.com/roboll/helmfile/releases/download/v0.135.0/helmfile_linux_amd64
chmod +x helmfile_linux_amd64
mv helmfile_linux_amd64 ~/.local/bin/helmfile
xxxxxxxxxx
curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
sudo apt-get install apt-transport-https --yes
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm
xxxxxxxxxx
Hi, if you don't see an env file in your project, there is one workaround how to get UUID you are looking for. BTW are you sure you connected your project with the Shopify dev account? Anyway...
Install the app in the dev store. Go to the theme editor -> select "App embeds" from the left-hand menu -> if you have installed the app and extension correctly, your extension should be listed there. Press the right mouse button over the extension name and choose Inspect from the context menu. In the source code, find the phrase "&app_embed_uuid=xxxxx" - this is your UUID. If you have installed more than one app, make sure you copy the proper UUID of your extension.
Let me know if it works for you. Best!
View solution in original post
xxxxxxxxxx
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
sudo apt-get install apt-transport-https --yes
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm