https://github.com/nrjdalal/start-pro.git
A modern, production-ready React starter template powered by TanStack Start, Vite, and Tailwind CSS v4.
shadcn/ui components..
โโโ layout.tsx
โโโ page.tsx
โโโ (dashboard)
โ โโโ layout.tsx
โ โโโ x
โ โโโ page.tsx
โโโ api
โโโ auth
โโโ [...all]
โโโ route.ts
git clone <repository-url>
cd start-pro
bun install
cp .example.env .env
Update .env with your database credentials and other secrets.
bun run db:push
bun run dev
dev: Start the development server on port 3000.build: Build the application for production.start: Preview the production build.db:push: Push schema changes to the database.db:studio: Open Drizzle Studio to manage your database.lint: Run linting checks.This project utilizes virtual-next-routes to provide a familiar Next.js-style file-system routing experience while leveraging the power of TanStack Router. This allows for defining routes using the app directory structure (e.g., app/page.tsx, app/api/route.ts).