THE VAULT / START HERE / GUIDE + CHECKLIST
Put It on the Internet
Your app works on your screen. This kit gets it onto the actual internet, on a domain your mum can visit, without you learning what a server is. Three signposted paths (Lovable/Bolt/Replit, Claude Code/Cursor via Vercel, or a single HTML file), the domain chapter with real July 2026 prices, a paste-in prompt that connects the domain click by click, and the 15-minute checklist to run before you share the link.
LAST VERIFIED 2026-07-09
"It works" doesn't count until someone else's phone can load it
There's a gap between "my app works" and "my app is on the internet," and it's smaller than it looks: pick a hosting path (hosting means a computer that keeps your app running and reachable 24/7 so yours doesn't have to), press one or two buttons, then point a domain at it. Total cost: $0 for hosting on every path below, $10-15/yr for the domain if you want one.
NOTE
Use this page as a prompt reference. Every file below is built to be handed straight to an AI. Download it, drop it into Claude, ChatGPT, Cursor, or Lovable, and say "use this as my playbook." The prompts on this page are copy-paste ready.
First, pick your path. It depends entirely on where your code lives right now:
| You built with... | Your path | Time to live URL | Cost |
|---|---|---|---|
| Lovable, Bolt, or Replit (the app lives in their website) | Path A: their Publish/Deploy button | 2 minutes | Free URL; custom domain needs their paid plan on Lovable (~$25/mo) and Replit (~$25/mo) |
| Claude Code or Cursor (the code lives on your computer) | Path B: GitHub + Vercel free tier | 15-20 minutes | $0 (Vercel Hobby plan) |
| It's one HTML file | Path C: Netlify Drop, drag and drop | 60 seconds | $0 |
Path A: Lovable, Bolt, Replit. The button already exists
These tools host for you. Lovable: click Publish, top right, and you get a live yourproject.lovable.app URL. Bolt: click Deploy, top right (it publishes through Netlify, a hosting company, behind the scenes) and you get a *.netlify.app URL. Replit: click Deploy, pick Autoscale for most apps, get a *.replit.app URL; deployments need Replit Core, around $25/mo as of July 2026.
Custom domain settings, as of July 2026 (if a button has moved, it will be under something named Domains in settings): Lovable: Publish button again, then Settings, then Connect domain (needs a paid plan, ~$25/mo). Bolt: claim the site in Netlify, then Domain management, then Add a domain. Replit: open your deployment, Settings tab, look for Link a domain. Each shows you the exact DNS records to add; the domain chapter below explains what those records mean, and the connect prompt does the clicking with you.
PAYOFF
Proof it worked: open the URL on your phone, not your computer. If your phone loads it, it's really on the internet, not just in your editor's preview.
Path B: built locally? Vercel's free tier is genuinely free
Your code lives in a folder on your computer. The route online: push it to GitHub (a website that stores your code), then connect Vercel (a hosting company that turns GitHub code into a live website, automatically, forever).
If your project isn't on GitHub yet, don't learn git today. Delegate:
- 1
Sign up with GitHub
Go to vercel.com, click Sign Up, choose Continue with GitHub. This specific choice is what lets Vercel see your code. Pick the Hobby plan (the free one).
- 2
Import your repo
Dashboard, Add New, then Project. You'll see your GitHub repos (repo is GitHub's word for a project folder). Click Import next to yours.
- 3
Deploy
Vercel auto-detects your framework. Usually change nothing. Click Deploy, wait 1-3 minutes. Confetti means done, and you have a live
yourproject.vercel.appURL. - 4
If it fails
Copy the whole red error log, paste it into Claude Code: "My Vercel deploy failed with this error. Explain what's wrong in plain English and fix it." Failed first deploys are normal.
What Hobby actually includes (July 2026): unlimited personal projects, 100 GB bandwidth a month (tens of thousands of visits), free HTTPS (the browser padlock), custom domains included. When it stops being free: the Hobby plan is for non-commercial use. If the site is a business, Vercel's terms want you on Pro at $20/month per member. For "I built a thing, look at it," Hobby is $0 and stays $0.
PAYOFF
The hidden win: every future push to GitHub now redeploys the site automatically. You just got the deployment pipeline people pay consultants for, as a side effect of clicking Import.
Path C: one HTML file? Drag it onto Netlify Drop
- 1
Name the file index.html
Put it in a folder, named exactly
index.html(that exact name is what servers show by default). - 2
Drag the folder
Go to app.netlify.com/drop and drag the folder (not the file) onto the page.
- 3
Done
Live URL in about 10 seconds, free. Create a free Netlify account when prompted to keep and edit the site. Custom domain lives in Domain management in the site's settings.
The domain chapter: $10-15/yr turns "school project" into "real site"
yourproject.vercel.app works fine and looks like homework. A domain (the address you actually want, like yourthing.com) is bought from a registrar, a shop that sells domains. Two worth using:
| Registrar | .com price (July 2026) | The catch |
|---|---|---|
| Cloudflare (domains section of cloudflare.com) | ~$10.50/yr, renewal identical (they sell at cost) | Slightly more technical interface |
| Namecheap (namecheap.com) | $10-12 first year, renews ~$16-17/yr | Judge by the renewal price at checkout, not the promo |
- [ ].com if available; .dev or .app if you're a builder type; .io works but runs $30-40/yr
- [ ]A $1.99 first year means the renewal is where they get you. Check year two before buying.
- [ ]Skip every checkout upsell except WHOIS privacy (hides your home address from the public domain registry). Cloudflare and Namecheap include it free; anyone charging for it in 2026 is not your friend.
DNS is the internet's phone book
Browsers can't find yourthing.com by name; they need the number of the computer serving it. DNS is the public phone book that says "yourthing.com? That's at this address." Connecting a domain just means writing your host's number into the book. No code changes, nothing moves. It's a directory entry.
A DNS record is one line in that book. There are a dozen types; as a beginner you touch exactly two:
| Record | What it says | You use it for |
|---|---|---|
| A record | "This name points to this exact numeric address" (an IP address, like 76.76.21.21). The book holds an actual phone number. | The bare domain, yourthing.com, pointed at the number your host gives you |
| CNAME record | "This name is an alias for that other name." The book says "see Vercel's entry," so if the host's number changes, yours stays correct automatically. | www.yourthing.com, pointed at something like cname.vercel-dns.com |
Your host's "add domain" screen shows you the exact values: usually one A record and one CNAME. You copy them into your registrar's DNS page (Cloudflare: the DNS tab; Namecheap: Domain List, then Manage, then Advanced DNS). Or better, let the AI drive:
WATCH OUT
Expectation setting: after you save the records, the phone book updates worldwide (called propagation). Officially up to 48 hours; usually live in 10 minutes. Check whatsmydns.net: green checkmarks around the map mean it spread. Not working after an hour is a typo or a wrong record, not a waiting problem.
The 3 domain failures everyone hits (and the fix for each)
Works without www but not with it (or the reverse): you added one record, not both. Add the missing A or CNAME.
"Domain already in use" on Vercel: the domain is attached to another Vercel project, usually an old test. Remove it from that project first.
Still dead after an hour: screenshot your DNS records page, paste it into your AI: "Here are my DNS records, my host told me to set [what they told you]. What's wrong?" It's almost always a typo, a stray https:// in a record value, or the record on the wrong domain.
The 15-minute checklist before you share the link
Live is not the same as ready. Run this before the link goes anywhere public:
- [ ]Works on a phone. Your actual phone, every page, every button with a thumb. Broken? Screenshot to your AI: "fix the layout for a 390px-wide screen without changing desktop."
- [ ]The name isn't "my-app-v2-final". Check the browser tab title and the page heading; the tab title is what shows in bookmarks and shared links. Ask your AI to set the title, description, and social preview tags.
- [ ]A favicon exists (the tiny icon in the browser tab). The default blank icon whispers "unfinished." Ask your AI to generate and wire one in, or make a free one at favicon.io.
- [ ]Zero links 404 (404 is the "page not found" error). Click everything, including the footer. Or: "list every link in this project and tell me which could 404 or point to localhost" (localhost means "my own computer", a link only you could ever load).
- [ ]Someone else has actually loaded it. One friend, their device, doing the main thing. Half of go-live failures are login walls and forms that only worked for the owner.
- [ ]You know where error reports go. Minimum: you can find your host's logs (Vercel: project, then the Logs tab). Better: a contact email on the site.
- [ ]Your API keys are not visible. The one item that costs real money to skip. Run the prompt below.
An API key is a secret password your app uses to talk to paid services (OpenAI, Stripe, a database). If one sits in your public code, bots will find it and spend on your card. Before sharing, run this in your project:
WATCH OUT
If the check finds an exposed key, rotating it is not optional (get a fresh key at the service's dashboard, delete the old one). A key that was public for a minute is burned forever.
When you outgrow this
Your site is live; nobody knows it exists yet. The seo-geo-engine kit is the next rung: getting found by Google and by the AI assistants people actually ask now. Much later, when pushing to GitHub feels boring and you want deploys and checks to run themselves, github-actions-runbooks automates the whole pipeline. Not yet, though. Go send someone the link first.
Get the next drop
Every new Vault system ships to the list first. Twice a week, free.