suyash5053 / shadcn-turborepo

This is a starter Repository for setting up turbo-repo with shadcn, tailwind, eslint and tsconfig.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shadcn with Turborepo

Static Badge

This is a Turborepo demo repository with shadcn, tailwind, eslint, and typescript pre-configured.

Note

This example uses yarn as a package manager.

Using this example

Clone the repository:

git clone https://github.com/suyash5053/shadcn-turborepo.git

Install dependencies:

cd shadcn-turborepo
yarn install

Add UI components

There are two ways:

  1. Change your directory into the package and use
cd packages/ui
npx shadcn@latest add <component-name>
  1. Adding via the workspace command.

Note

Remember to run yarn install after copying an app.

Utilities

This Turborepo has some additional tools already set for you:

Build

To build all apps and packages, run the following command:

cd shadcn-turborepo
yarn build

Develop

To develop all apps and packages, run the following command:

cd shadcn-turborepo
yarn dev

Remote Caching

Turborepo 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 shadcn-turborepo
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 link

Useful Links

Learn more about the power of Turborepo:

Learn more about shadcn/ui:

About

This is a starter Repository for setting up turbo-repo with shadcn, tailwind, eslint and tsconfig.


Languages

Language:TypeScript 78.0%Language:JavaScript 11.3%Language:CSS 10.7%