


Launched my side project: upload a ZIP (or one HTML file) → live website in ~2 min
So a friend of mine vibe-coded a genuinely clean portfolio in Claude the other week like, properly nice, done in ten minutes. And then he just… stopped. "ok how do I actually put this on the internet?" We ended up spending more time going back and forth about Vercel vs Netlify and whether he needed to buy a domain than he'd spent building the thing. That gap has quietly annoyed me for years: it takes minutes to make a static site now, and an afternoon to deploy it.
So I built MakeMySiteLive. You zip the folder (or literally just paste one HTML file), upload, and you get a live URL with SSL. No repo, no build step, no server. That's the whole pitch.
A couple of things from building it, in case they're useful:
The dumbest call I made early was giving even single-page "paste one HTML file" sites a full version history with rollback the bigger sites had it, so consistency felt right. Shipped it, then ripped it back out a week later. Nobody pasting a one-off landing page wants to think about "v1 / v2 / roll back" they just want to overwrite the thing. Lesson I keep relearning don't copy your own abstractions just because they exist.
The part that actually ate my time wasn't the upload flow at all, it was custom-domain SSL. Getting "just point a CNAME and HTTPS works, renewals included" reliable (Cloudflare for SaaS handles the cert side) took way longer than I'd budgeted.
And the bit I didn't expect to enjoy: since AI usually generated the page anyway, I wired up a hosted MCP server so you can publish straight from Claude — say "publish this as a site" mid-conversation and it hands back a live link, no dashboard. Felt like the obvious endgame once it worked.
(Stack, for the curious: Next.js front end, Fastify + Postgres behind it, files on Cloudflare R2, Redis for caching and sessions.)
Free to try, one site, no card: www.makemysitelive.com and the MCP setup is written up here if that's your thing: www.makemysitelive.com/guides/deploy-website-with-ai-mcp
Genuine question for the people here who've built deploy-y things: is "skip the whole deployment ceremony for simple static sites" actually a pain you feel, or do you like the Git/Vercel flow and I've just built something only I wanted? Not fishing for compliments, honestly trying to work out if this is a real wedge or a me-problem.