| id | title |
|---|---|
quick-start |
Quick Start |
npx @tanstack/cli create my-appInteractive prompts guide you through project name, package manager, and integration selection.
# Defaults only
npx @tanstack/cli create my-app -y
# With integrations
npx @tanstack/cli create my-app --integrations tanstack-query,clerk,drizzlecd my-app
pnpm dev
# Open http://localhost:3000Some integrations require API keys. After creation:
cp .env.example .env
# Edit .env with your valuesmy-app/
├── src/
│ ├── routes/ # File-based routing
│ │ ├── __root.tsx # Root layout
│ │ └── index.tsx # Home page
│ └── integrations/ # Integration code
├── .tanstack.json # CLI config
└── .env.example # Required env vars
- CLI Reference - All options
- Integrations - Available integrations