Skip to content

Instantly share code, notes, and snippets.

View mixedfeelings's full-sized avatar

George Wietor mixedfeelings

View GitHub Profile
@klevu
klevu / query-1
Last active January 28, 2025 17:16
Shopify Metafields with GraphQL
{
product(first: 50) {
edges {
node {
name
description
}
}
}
}
@LosAlamosAl
LosAlamosAl / dreamhost-deploy.md
Last active March 14, 2026 17:44
Deploy a GitHub-based static site to Dreamhost

Before begining, make sure your SSH keys are set so you can ssh to your Dreamhost account.

$ ssh-copy-id -i ~/.ssh/id_rsa.pub xxxxxx@cloverdale.dreamhost.com
(you'll need xxxxxx's password here)
$ ssh xxxxxx@cloverdale.dreamhost.com

On the Dreamhost server you should have a directory for your site (e.g. adubdub.com or ispeed.honeyimlost.com (if not, you'll need to make one). You now need to make a git repository for that site (at the same level in the tree) and initialize a bare repo: