This is a fork of Turborepo starter with shadcn/ui pre-configured by dan5py with the addition of dark mode .Visit the original repo Visit
Note
This example can be used only with npm & pnpm as package managers.
Create your own Repo using:
npx create-turbo@latest -e https://github.com/TanishBasu2002/Turbo-Shadcn npx create-turbo@latest -e https://github.com/TanishBasu2002/Turbo-Shadcn/tree/pnpm npx create-turbo@latest -e https://github.com/TanishBasu2002/Turbo-Shadcn/tree/viteUse the pre-made script:
npm run ui:add <component-name> -- <options>or
pnpm ui:add <component-name> -- <options>
This works just like the add command in the
shadcn/uiCLI.
Turborepo offer a simple command to add a new app:
npx turbo gen workspace --name <app-name>This will create a new empty app in the apps directory.
If you want, you can copy an existing app with:
npx turbo gen workspace --name <app-name> --copyNote
Remember to run npm install after copying an app.
This Turborepo includes the following packages/apps:
docs: a Next.js appweb: another Next.js app@repo/ui: a stub React component library shared by bothwebanddocsapplications (🚀 powered by shadcn/ui)@repo/eslint-config:eslintconfigurations (includeseslint-config-nextandeslint-config-prettier)@repo/typescript-config:tsconfig.jsons used throughout the monorepo
Each package/app is 100% TypeScript.
This Turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- ESLint for code linting
- Prettier for code formatting
To build all apps and packages, run the following command:
cd turborepo-shadcn-ui
npm run buildTo develop all apps and packages, run the following command:
cd turborepo-shadcn-ui
npm run devTurborepo can use a technique known as Remote Caching to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.
By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can create one, then enter the following commands:
cd turborepo-shadcn-ui
npx turbo login
This will authenticate the Turborepo CLI with your Vercel account.
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:
npx turbo linkLearn more about the power of Turborepo:
Learn more about shadcn/ui: