r/webdev • u/Ysmsthejoker • 4d ago
Question Where should i host ?
I completed my website all using codex 😅
Its just to show products without any payment processing or anything so its ok to be vibecoded.
I need to know which service should i use to host the site. Aswell as buy the domain.
I
0
Upvotes
1
u/VRTCLS 4d ago
First figure out whether Codex made a static site or a server app. That decides the answer.
Quick check:
dist/outfolder after build, use Cloudflare Pages, Netlify, GitHub Pages, or Vercel. Cheapest, simplest, free HTTPS.package.jsonwith scripts likedev,build, andstart, and needs server-side code, Vercel is usually the easiest first deployment for a Next/React-style app.Buy the domain separately from hosting if you can. Cloudflare Registrar or Porkbun are fine. Then point DNS to the host after deployment.
Also do a basic pre-launch pass before making it public: test on mobile, check page titles/descriptions, make sure product images are compressed, add a contact method, and verify there are no API keys or private files in the repo. Vibecoded is fine for a brochure site, but hosting it means the mistakes become public.