How to Update Your Website

Choose your method

Easiest

Claude Code (Terminal)

1

Open Terminal

Press Cmd + Space, type Terminal, Enter.

2

Start Claude

claude
3

Tell Claude what to change

"Change the headline to 'Welcome' and deploy it to Cloudflare"
"Update the phone number to 555-1234 and push to GitHub"

Done! Claude edits the file and deploys it for you.

Recommended

GitHub + Auto Deploy

If your project is connected to GitHub, Cloudflare deploys automatically when you push changes.

1

Edit on GitHub.com

Go to your repo → click index.html → click the pencil icon (Edit)

2

Make your changes

Edit the text directly in the browser.

3

Commit changes

Click "Commit changes" (green button).

Auto-deploys in ~30 seconds

more options
Manual

Cloudflare Drag & Drop

1

Edit locally

Right-click index.html → Open With → TextEdit. Save with Cmd + S

2

Upload

Go to dash.cloudflare.com → Workers & Pages → Your project → Upload

📁 Drag your folder here → Deploy
Advanced

Terminal Commands

cd ~/your-project
open -a TextEdit index.html

Make changes, save, then:

npx wrangler pages deploy . --project-name your-project --branch main