The strongtowerremodel.com site is live. Here's how to keep iterating on it from your machine, step by step.
One-time install on your Mac. Skip anything already installed.
Open Terminal (Command+Space → type "Terminal"). Paste this to install Homebrew (Mac's package manager):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Then install the three tools we need:
brew install git gh node
Authorize your Mac to talk to GitHub. Run:
gh auth login
Pick GitHub.com → HTTPS → Login with a web browser. It'll open a browser tab, you'll paste a code and sign in.
Pull the code onto your machine (this creates a strongtower folder on your Desktop):
cd ~/Desktop
gh repo clone thoughtsinform/strongtower
cd strongtower
git pull from inside the strongtower folder to grab any changes Daniel pushed.
The AI-assisted editor Daniel used. From the strongtower folder:
npm install -g @anthropic-ai/claude-code
claude
First time it runs, sign in with the shared Anthropic account.
Every time you want to update the site, this is the pattern. Same shape as lead2bid.com.
From inside ~/Desktop/strongtower:
git pull
This grabs any changes Daniel (or anyone else) has pushed since you last worked. Prevents surprises.
Open the folder in your editor of choice. The three files you'll change most:
index.html the content and structure
styles.css the colors, fonts, layout
script.js the interactions
To preview locally, just double-click index.html to open it in Safari or Chrome.
Once you're happy with the edit:
git add .
git commit -m "Changed the hero headline to X"
git push
Write the commit message like you'd tell Daniel over dinner what you did. That message becomes the changelog forever.
Cloudflare Pages sees the push and rebuilds. Wait ~30 seconds, then refresh strongtowerremodel.com.
To watch progress: Cloudflare dashboard → Workers & Pages → strongtower → Deployments.
git revert HEAD && git push. Site rolls back in another 30 seconds. Git makes everything reversible.
Don't do this alone. Claude Code knows the whole project already.
Instead of hunting through code, just describe what you want:
Claude will do the edits and (if you ask) also commit and push them.
Small things Daniel left open that would be great to tackle.
Ask JP to check his Gmail (duboisjonpierre@gmail.com) for a Namecheap "Whois verification" email and click the link. If he doesn't, the domain gets suspended in about 15 days.
strongtowerremodel.com works. www.strongtowerremodel.com may not resolve yet. Ask Claude: "check whether the www CNAME is set up correctly in Cloudflare and fix it if not."
Right now the contact form opens the visitor's email app with a pre-filled email. Ask Claude: "wire up the contact form to a Google Form and Apps Script that emails Zack when submitted."