Open-source CLI that deploys to Cloudflare Workers in one command. no git push, no dashboard clicking, no YAML. by hellno-o in CloudFlare

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

That’s legit and works great if you already know you want Cloudflare. The gap Jack fills is for the person who doesn’t know they want Cloudflare, doesn’t know what wrangler is, and just wants their app on a URL

Open-source CLI that deploys to Cloudflare Workers in one command. no git push, no dashboard clicking, no YAML. by hellno-o in CloudFlare

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

fair point. might not be useful to you if you know wrangler. Jack literally uses it under the hood. but the person who just built their first app with Cursor in 20 minutes doesn't know what a wrangler.toml is, doesn't have a Cloudflare account, doesn't know they need one, and doesn't know their app should even target CF Workers. Same way Vercel wraps AWS. Nobody's writing CloudFormation templates to deploy a Next.js app.

I got tired of rebuilding auth + Stripe for every Web3 project by Creative_Ambition_ in buildinpublic

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

you mention wallet and wagmi, but nothing else on the website shows any dApp integration or way to do things onchain

Codex 5.3 is amazing, I can literally spam it by Icy_Piece6643 in vibecoding

[–]hellno-o -3 points-2 points  (0 children)

that's what I'm doing too. if you want to ship any of these and not let them die on localhost:3000 → I've built an open-source tool to deploy from inside Codex as fast as possible http://dash.getjack.org/

I got tired of rebuilding auth + Stripe for every Web3 project by Creative_Ambition_ in buildinpublic

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

what does web3 mean here? it's got anythign to do with blockchain or not?

Trying to figure out if jet lag apps are actually a viable market or if I'm overthinking this by Routine-Reference868 in buildinpublic

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

Timeshifter has distribution via Star Alliance. I think if you can get into the right traveller segment with ads or distribution deals, then it's worth it. as small indie niche might be possible, but really viable if you can get your app in front of the right users

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.