Files
turbostarter/.context/turbostarter-framework-context/sections/web/stack.md
Alejandro Gutiérrez 3527e732d4 feat: turbostarter boilerplate
Production-ready Next.js boilerplate with:
- Runtime env validation (fail-fast on missing vars)
- Feature-gated config (S3, Stripe, email, OAuth)
- Docker + Coolify deployment pipeline
- PostgreSQL + pgvector, MinIO S3, Better Auth
- TypeScript strict mode (no ignoreBuildErrors)
- i18n (en/es), AI modules, billing, monitoring

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 01:01:55 +01:00

3.7 KiB

title, description, url
title description url
Tech Stack A detailed look at the technical details. /docs/web/stack

Tech Stack

Turborepo

Turborepo is a monorepo tool that helps you manage your project's dependencies and scripts. We chose a monorepo setup to make it easier to manage the structure of different features and enable code sharing between different packages.

<Card href="https://turbo.build/" title="Turborepo - Make Ship Happen" description="turbo.build" icon={} />

Next.js

Next.js is one of the most popular React frameworks that enables server-side rendering, static site generation, and more. We chose Next.js for its flexibility and ease of use. We're also using it to host our serverless API.

} />

<Card href="https://nextjs.org" title="Next.js" description="nextjs.org" icon={} />

Hono & React Query

Hono is a small, simple, and ultrafast web framework for the edge. It provides tools to help you build APIs and web applications faster. It includes an RPC client for making type-safe function calls from the frontend. We use Hono to build our serverless API endpoints.

To make data fetching and caching from our API easy and reliable, we pair Hono with React Query. It helps manage asynchronous data, caching, and state synchronization between the client and backend, delivering a fast and seamless UX.

} />

<Card href="https://tanstack.com/query/latest" title="React Query" description="tanstack.com" icon={ } />

Better Auth

Better Auth is a modern authentication library for fullstack applications. It provides ready-to-use snippets for features like email/password login, magic links, OAuth providers, and more. We use Better Auth to handle all authentication flows in our application.

<Card href="https://www.better-auth.com" title="Better Auth" description="better-auth.com" icon={} />

Tailwind CSS

Tailwind CSS is a utility-first CSS framework that helps you build custom designs without writing any CSS. We also use Radix UI for our headless components library and shadcn/ui, which enables you to generate pre-designed components with a single command.

} />

<Card href="https://radix-ui.com" title="Radix UI" description="radix-ui.com" icon={} />

<Card href="https://ui.shadcn.com" title="shadcn/ui" description="ui.shadcn.com" icon={} />

Drizzle

Drizzle is a super fast ORM (Object-Relational Mapping) tool for databases. It helps manage databases, generate TypeScript types from your schema, and run queries in a fully type-safe way.

We use PostgreSQL as our default database, but thanks to Drizzle's flexibility, you can easily switch to MySQL, SQLite or any other supported database by updating a few configuration lines.

} />

<Card href="https://www.postgresql.org" title="PostgreSQL" description="postgresql.org" icon={} />