Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Latest commit

 

History

History
57 lines (42 loc) · 1.06 KB

File metadata and controls

57 lines (42 loc) · 1.06 KB
id title
quick-start
Quick Start

Create a Project

npx @tanstack/cli create my-app

Interactive prompts guide you through project name, package manager, and integration selection.

Non-Interactive

# Defaults only
npx @tanstack/cli create my-app -y

# With integrations
npx @tanstack/cli create my-app --integrations tanstack-query,clerk,drizzle

Run the Project

cd my-app
pnpm dev
# Open http://localhost:3000

Environment Variables

Some integrations require API keys. After creation:

cp .env.example .env
# Edit .env with your values

Project Structure

my-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

Next Steps