Engineering7 min read

How We Ship Production MVPs in 4-8 Weeks (Without Cutting Corners)

By Niraj Jha ·

Co-Founder & CTO · Last updated

Key takeaways

  • A production MVP is a live system real users can use - not a prototype, a Figma deck, or a slide.
  • We scope in weeks, not quarters: a 1-2 week discovery phase produces a written spec before any code is written.
  • Bi-weekly deploys to staging mean the client always sees real working software instead of status updates.
  • Speed comes from a small, opinionated stack (Next.js, tRPC, Prisma) and ruthless scope-cutting - not from skipping tests or auth.
  • We ship the smallest thing that proves the core loop, then iterate once it is in front of users.

Most "fast" MVPs are fast because they are fake. A clickable Figma file, a no-code mockup, a landing page with a waitlist - these ship quickly because nobody can actually use them. At Shunya, a production MVP means something stricter: a live system, on a real domain, with real authentication and a real database, that a real person can sign up for and use to do the one thing your product exists to do.

We ship that in four to eight weeks. Here is exactly how - and, more importantly, what we leave out to make it possible.

A production MVP is a live system, not a prototype

The single biggest reason MVPs slip is scope confusion. "MVP" gets stretched to mean "the first version of everything." It does not. The minimum viable product is the smallest thing that proves your core loop works and that someone will use it.

Concretely, every Shunya MVP ships with:

  • One core workflow, working end to end. Sign up, do the main thing, see the result.
  • Real authentication. We do not fake auth in an MVP. It is table stakes and it is cheap with modern tooling.
  • A real, relational database. Data you can trust and migrate later, not a spreadsheet.
  • A live deployment. On a real URL, with a real domain, that we hand over.

If you cannot describe your product's core loop in one sentence - "a user does X and gets Y" - you are not ready to build an MVP yet. You are ready to talk. That is what the discovery phase is for.

We scope in weeks, not quarters

Before a single line of code, there is a one-to-two week discovery phase. The output is a written spec document: what we are building, what the core loop is, what is explicitly out of scope, and how we will know it works. You sign off on it before engineering starts.

This sounds slow. It is the fastest thing we do. A written spec is where we have the cheap argument - the one where changing your mind costs an email instead of two weeks of rework.

PhaseDurationWhat you get
DiscoveryWeek 1-2Written spec, architecture blueprint, scope agreement
EngineeringWeek 3-6Bi-weekly deploys to staging - real, clickable software
LaunchFinal weekQA pass, production deploy, docs, handover

Speed comes from a small, opinionated stack

We do not evaluate frameworks per project. We reach for a stack we know deeply - Next.js, tRPC, and Prisma - because the boring decisions are already made. End-to-end type safety means a change to the database schema shows up as a type error in the UI before it ships, not as a bug after launch.

The lesson generalises beyond our specific tools: velocity is a function of how little you have to think about the foundation. A team using one stack fluently will out-ship a team assembling a "perfect" bespoke stack every time.

What we deliberately leave out

This is the part teams skip, and it is the whole game. To ship in weeks, we cut:

  • Admin dashboards and internal tooling - until you have data worth administering.
  • Granular roles and permissions - until you have more than one type of user.
  • Exotic integrations - until the core loop proves people want the product.
  • Edge-case handling for flows nobody has used yet.

None of this is "technical debt." It is deferred scope, and deferring it is a decision, not an accident.

Cutting scope is not the same as cutting corners. We never skip auth, never skip the real database, and never skip the production deploy. Those are the load-bearing walls. Everything else is furniture you can add once people move in.

You see real software every two weeks

From week three, we deploy to a staging environment every two weeks. You click through working software, not a status deck. This does two things: it catches misunderstandings while they are cheap to fix, and it keeps everyone honest about what "done" means.

By the final week, the product is QA'd, deployed to production, documented, and handed over. Four to eight weeks after the first conversation, you have a live system - and the only thing left to do is the most important one: put it in front of real users and learn.

That is the point of shipping fast. Not to be done. To start learning sooner.

Frequently asked questions

What counts as a "production" MVP?
A production MVP is a deployed system real users can sign up for and use - with authentication, a real database, and the one core workflow working end to end. It is intentionally small, but it is live, not a prototype.
How can you build an MVP in 4 to 8 weeks without creating technical debt?
We use a small, opinionated stack we know deeply, cut scope hard down to the core loop, and keep auth, data, and deploys boring and standard. Speed comes from saying no to non-essential features, not from skipping the fundamentals.
What do you deliberately leave out of an MVP?
Admin dashboards, granular roles, exotic integrations, and edge-case handling for flows nobody has used yet. We add those once the core loop is validated with real users.
Will I see progress before launch?
Yes. We deploy to a staging environment every two weeks, so you are always looking at real working software you can click through - never just a status report.

Have a product to build?

Shunya ships production software - web, mobile, AI, and cloud - with one team that owns the whole stack from concept to launch. Tell us what you want to build.

Niraj Jha

Written by

Niraj Jha

Co-Founder & CTO

Co-Founder & CTO of Shunya Tech. Full-stack architect who sets the engineering culture and technical standards behind every product we ship - from database design to production delivery on Next.js, tRPC, and Prisma.

Last updated