Jump to content

Installation

To scaffold an app using create-t3-app, run any of the following three commands and answer the command prompt questions:

npm

npx create-t3-app@latest

yarn

yarn create t3-app

pnpm

pnpm dlx create-t3-app@latest

Advanced usage

Option/FlagDescription
[dir]Include a directory argument with a name for the project
--noGitExplicitly tell the CLI to not initialize a new git repo in the project
-y, --defaultBypass the CLI and use all default options to bootstrap a new t3-app
--noInstallGenerate project without installing dependencies

Experimental usage

For our CI, we have some experimental flags that allows you to scaffold any app without any prompts. If this use case applies to you, you can use these flags. Please note that these flags are experimental and may change in the future.

FlagDescription
--CILet the CLI know you’re in CI mode
--trpc=trpcInclude trpc in the project
--prisma=prismaInclude prisma in the project
--nextAuth=nextAuthInclude nextAuth in the project
--tailwind=tailwindInclude tailwind in the project

Note: If you don’t provide the CI flag, the rest of these flags has no effect.

Example

pnpm dlx create-t3-app@latest --CI --trpc=trpc  --tailwind=tailwind