### Create Empty Monorepo Project Source: https://better-t-stack.dev/docs/index This command creates an empty monorepo project named 'my-workspace' with no frontend or backend specified, providing a bare-bones structure for custom setups. ```bash npm create better-t-stack@latest my-workspace \ --frontend none \ --backend none ``` -------------------------------- ### Create Project with CLI (Default) Source: https://better-t-stack.dev/docs/index This command creates a Better T Stack project using the default stack configuration, skipping the interactive prompts. It's a faster way to get started if you're happy with the default choices. ```bash npm create better-t-stack@latest --yes ``` -------------------------------- ### Create Project with Convex + React + Clerk Stack Source: https://better-t-stack.dev/docs/index This command sets up a project named 'my-api' using Convex for the backend, no frontend framework, Node.js runtime, PostgreSQL database, Prisma ORM, and TRPC API. ```bash npm create better-t-stack@latest my-api \ --frontend none \ --backend fastify \ --runtime node \ --database postgres \ --orm prisma \ --api trpc ``` -------------------------------- ### Create Project with CLI (Interactive) Source: https://better-t-stack.dev/docs/index Use this command to initiate the Better T Stack project creation process. It will prompt you to select your desired frontend, backend, database, ORM, API layer, and addons. ```bash npm create better-t-stack@latest ``` -------------------------------- ### Create Project with Default Stack Configuration Source: https://better-t-stack.dev/docs/index This command creates a new Better T Stack project named 'my-webapp' with a predefined default stack including TanStack Router, Hono, SQLite, Drizzle ORM, Better Auth, and Turborepo addon. ```bash npm create better-t-stack@latest my-webapp \ --frontend tanstack-router \ --backend hono \ --database sqlite \ --orm drizzle \ --auth better-auth \ --addons turborepo ``` -------------------------------- ### Create Project for Mobile App (Expo) Source: https://better-t-stack.dev/docs/index This command initializes a mobile application project named 'my-native' using native-uniwind for the frontend, Hono for the backend, SQLite for the database, Drizzle ORM, and Better Auth. ```bash npm create better-t-stack@latest my-native \ --frontend native-uniwind \ --backend hono \ --database sqlite \ --orm drizzle \ --auth better-auth ``` -------------------------------- ### Create Project with CLI (Stack Builder UI) Source: https://better-t-stack.dev/docs/index Access the Better T Stack Stack Builder UI via the command line. This UI allows you to visually select your stack components and then generates the appropriate creation command. ```bash npm create better-t-stack@latest builder ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.