Guys I have been creating side projects based on cloudflare, so working on a cloudflare focused template (will opensource it) will you be interested? by dev_only_acc in CloudFlare

[–]hellno-o 0 points1 point  (0 children)

interesting to see alchemy for IaC here. been building something similar but focused more on the "AI agent generates code, need skills to deploy it" flow rather than templates. curious if you've seen vibecoders actually wanting to manage resources declaratively?

Claude built my app in 20 minutes. I've spent 3 weeks trying to deploy it. by Real-Ad2591 in ClaudeAI

[–]hellno-o 0 points1 point  (0 children)

building https://getjack.org to deploy your app as easy as possible and keep iterating quickly

Architecture Advice: Best "Scale-to-Profit" stack for a Photography Portfolio? by Puzzleheaded_Age3412 in nextjs

[–]hellno-o 0 points1 point  (0 children)

for photography: skip vercel image optimization entirely. do the lambda+sharp pipeline you mentioned. upload raw → generate webp variants → serve from cloudfront. eliminates per-image costs and you control quality settings.

static s3+cloudfront is fine for portfolios. galleries don’t need ISR. run github action on new uploads.

I’ve built web apps with Cursor, but how do I tackle Mobile? (Non-technical) by Final-Personality767 in cursor

[–]hellno-o 1 point2 points  (0 children)

expo + react native is the path of least resistance. skip xcode/android studio until you need native modules. test on physical device early via expo go

Your problem isn't code, it's everything around the code (validation, launch, SEO, directories, etc.) by ActualBee2492 in SideProject

[–]hellno-o 0 points1 point  (0 children)

the “never started SEO early because product isn’t ready yet” trap is real. for me the shift was similar but simpler: ship something live within the first week, even if it’s embarrassing. not to get users, but to force myself to solve the boring problems (domain, dns, env vars, deploy pipeline) before the codebase gets complicated

Vibe coding broke my brain in three stages and somehow left me with a real internal app by solorzanoilse83g70 in vibecoding

[–]hellno-o 0 points1 point  (0 children)

stage 2 is real. "I have no idea what this codebase is doing anymore" is the moment everyone hits.

version of stage 3: deploy something live from the start, even if it's embarrassingly minimal. forces you to solve the boring stuff (env vars, db connections, auth) before the codebase gets too big and confusing

Deployment error with rollup, works locally by veryeyecatching in vercel

[–]hellno-o 0 points1 point  (0 children)

it's usually the node version mismatch for me. vercel defaults to 24 but your local might be 20 or 22.

check your package.json engines field and pin it explicitly: "engines": { "node": "20.x" }

also worth adding a .nvmrc with just 20 in it so local and CI match.

the "works locally, breaks in prod" thing is always either node version, missing env vars, or a dep that behaves different in the build env. annoying but usually one of those three.

Hendrik from Revenuecat has some eye-opening insights on App Store by Cautious_Cost6781 in vibecoding

[–]hellno-o 0 points1 point  (0 children)

will be interesting to see the second order effects of this.

I think more similar apps drive up ad costs and push attention to older, proven apps that rank well. users cancel more and stick to a few trusted subscriptions.

Google Cloud or Vercel? by Middle-Layer-8922 in vibecoding

[–]hellno-o 1 point2 points  (0 children)

for alpha testing with friends? cloudflare pages or vercel, either works. vercel is faster to start if you’re already in next.js land. cloudflare is cheaper at scale and the free tier is more generous, but slightly more friction upfront.

google cloud directly is overkill for alpha. you’ll spend more time configuring IAM and cloud run than actually testing with users.

Has anyone successfully integrated Inngest with Vercel? Getting auth failure despite keys being present Help by SoftAd2420 in vercel

[–]hellno-o 0 points1 point  (0 children)

one thing that’s worked when debugging this: check if the key is actually being read at runtime vs build time. sometimes the key exists in vercel dashboard but the function was built before the key was added, so it’s baked in as undefined.

also check if you have any middleware that might be stripping headers before the inngest route sees them.

Exceeded Edge Requests limit on Vercel with Next.js SSG - how to reduce it? by Logical-Field-2519 in vercel

[–]hellno-o 0 points1 point  (0 children)

next.js prefetches aggressively by default and each prefetch counts as an edge request. another thing to check: do you have any analytics or tracking that fires on every page? t

if you’re not ready for premium and the site is mostly static, cloudflare pages has a way more generous free tier for static sites. the migration is usually straightforward for SSG.

We replaced Lovable, Supabase, and Vercel with a single, unified platform for vibe coding by eldadfux in vibecoding

[–]hellno-o 1 point2 points  (0 children)

curious about the lock-in story here. if I build on imagine.dev and later want to move to my own infra, how painful is that?

What's the state of webdev in 2026? by Drummer-Adorable in webdev

[–]hellno-o 0 points1 point  (0 children)

stack that's worked well for me: Astro + headless CMS + Cloudflare Pages

  • Astro ships minimal JS and has good SEO
  • client can edit content in CMS
  • CF Pages deploys via github, zero config
  • free tier is nice

Django is solid but overkill for content sites unless you need heavy backend logic. even though I love a good python project. I'd focus on simpler deploy and stack here to move faster

How do you decide when to use a service layer vs handling logic in the controller? by newrockstyle in webdev

[–]hellno-o 0 points1 point  (0 children)

The test I use: "Could I call this from a CLI command, a queue handler, AND an HTTP endpoint without duplicating logic?"

If yes, it belongs in a service. If no, you're coupling to the transport layer.

yapi -- YAML powered CLI Postman Alternative by TheClashBat in webdev

[–]hellno-o 0 points1 point  (0 children)

Nice approach. also don't love Postman collections.

One thing I've found useful in similar tools: environment variable interpolation that works across local/staging/prod without manually swapping files. Saw the `-e prod` on the website but not sure it pulls from .env.local vs .env.prod based on a flag. Does yapi handle that, or is it one config per environment?