A powerful monorepo starter template featuring Next.js, Nextra, and a shared pre-configured shadcn/ui package, powered by Bun, Vitest, Playwright, Storybook, and Biome.
- π Features
- π Quick Start
- π¦ What's Inside?
- π οΈ Useful Commands
- π§° Development Tools
- π Deployment
- π Useful Links
- π₯ Contributors
- π¦ Monorepo structure with Turborepo for efficient build system and caching
- β‘ Next.js for fast, server-side rendered React applications
- π Nextra for easy-to-create documentation sites
- π¨ shadcn/ui for beautiful, customizable UI components
- π° Bun as a fast, all-in-one JavaScript runtime
- π§ͺ Vitest for speedy unit testing
- π Playwright for reliable end-to-end testing
- π Storybook for isolated component development and documentation
- πΏ Biome for fast, opinionated linting and formatting
- π Automated dependency management with Dependabot
- π₯ Automated contributor recognition
- π CI/CD setup with GitHub Actions
# Clone the repository
git clone https://github.com/gmickel/turborepo-shadcn-nextjs.git
# Navigate to the project directory
cd turborepo-shadcn-nextjs
# Install dependencies
bun install
# Start development server
bun dev
bun ui:add:component <component-name>
This works just like the add command in the
shadcn/ui
CLI. π¨
graph TD
A[Turborepo] --> B[Apps]
A --> C[Packages]
B --> D[@repo/docs]
B --> E[@repo/web]
B --> F[@repo/storybook]
C --> G[@repo/ui]
C --> H[@repo/utils]
C --> I[@repo/tsconfig]
App/Package | Description |
---|---|
@repo/docs |
Documentation site powered by Nextra 3 alpha π |
@repo/web |
Main Next.js web application π |
@repo/ui |
Core React components and design system shared by both web and docs applications (powered by shadcn/ui) π¨ |
@repo/utils |
Shared React utilities π οΈ |
@repo/tsconfig |
Shared tsconfig.json configurations π‘οΈ |
Each package and app is 100% TypeScript. πͺ
This Turborepo has some additional tools already set up for you:
- TypeScript for static type checking β
- Biome for code linting, formatting, and fixing πΏ
- Vitest for unit tests π§ͺ
- Playwright for end-to-end tests π§ͺ
- Changesets for managing versioning, changelogs, and publishing π
- Storybook for component development and documentation π
This Turborepo includes Storybook for component development and documentation. Storybook is set up for both the @repo/web
and @repo/ui
packages, allowing the development and showcasing of components from both your main application and your shared UI library.
To run Storybook:
bun storybook
This will start Storybook and open it in your default browser.
Storybook is configured to find stories in the following locations:
apps/storybook/src/**/*.mdx
apps/storybook/src/**/*.stories.@(js|jsx|mjs|ts|tsx)
apps/web/src/**/*.stories.@(js|jsx|mjs|ts|tsx)
packages/ui/src/**/*.stories.@(js|jsx|mjs|ts|tsx)
This configuration allows you to write stories for components in both your web application and your shared UI library.
This setup includes several useful Storybook addons:
@storybook/addon-links
: For linking between stories@storybook/addon-essentials
: A curated set of addons for a great developer experience@storybook/addon-onboarding
: For onboarding new users@storybook/addon-interactions
: For testing component interactions@storybook/addon-themes
: For theme switching in Storybook@storybook/addon-styling-webpack
: For handling CSS and PostCSS in Storybook
bun build
- Build all apps and packagesbun dev
- Develop all apps and packagesbun dev:ui
- Develop all apps and packages and display the output in Turbo's new experimental UIbun test
- Run all tests with vitestbun test:cov
- Run all unit tests with vitest and generate a coverage reportbun test:cov:ui
- Run all unit tests with vitest and display the vitest UIbun test:e2e
- Run all end-to-end tests with playwrightbun lint
- Lint and format all packagesbun lint:fix
- Lint, format, and fix all packagesbun changeset
- Generate a changeset π§βπ§ - WIPbun clean
- Clean up allnode_modules
anddist
folders (runs each package's clean script)bun ui:add:component
- Add a shadcn/ui component to the@repo/ui
packagebun storybook
- Run Storybook for component development and documentation
Turborepo offers a simple command to add new apps or packages to the monorepo. To add a new app, run the following command:
bun turbo gen workspace [--name <app-name>]
You will be prompted to choose the name and workspace type (app or package) to use.
You can copy an existing app or package with:
bun turbo gen workspace [--name <app-name>] --copy
You will be prompted to choose the name and workspace type (app or package) of the new app and which app or package to copy.
[! NOTE] Remember to run
bun install
after copying an app.β οΈ
This Turborepo uses GitHub Actions for CI. π€
It comes preconfigured with the following workflow that runs on every push or pull request to the main
branch:
- Setup: Checks out the code and sets up Bun.
- Install: Installs all dependencies using Bun.
- Build: Builds all apps and packages in the monorepo.
- Unit Tests: Runs all unit tests using Vitest.
- E2E Tests: Installs Playwright browsers and runs end-to-end tests using Playwright.
- Lint: Performs linting and formatting checks using Biome.
This template includes some useful automation tools:
Keeps dependencies up-to-date automatically with daily checks and update rules.
Can automatically merges patch updates from Dependabot to reduce manual work.
For the auto-merge workflow:
- Go to your repository's Settings > Actions > General.
- Under "Workflow permissions", select "Read and write permissions".
- Check "Allow GitHub Actions to create and approve pull requests".
- Save the changes.
- Optionally, create a Personal Access Token (PAT) with
repo
scope and add it as a repository secret namedGITHUB_TOKEN
for enhanced security.
Maintains an up-to-date list of contributors in your README.
- Dependabot is active out-of-the-box. Review and adjust the config as needed.
- Ensure proper permissions for the auto-merge workflow.
- To read more about the contributors list, see the contributors-readme-action README.
π§βπ§ WIP
For more information, refer to the official Changesets documentation.
This Turborepo is set up for easy deployment of its various applications.
The docs
and web
apps can be deployed to Vercel without any additional configuration. This allows for quick and easy deployment of your Next.js applications.
You can view the test deployments for these apps:
apps/web
: https://turborepo-shadcn-nextjs-web.vercel.app/apps/docs
: https://turborepo-shadcn-nextjs-docs.vercel.app/
The apps/storybook
is automatically deployed to GitHub Pages using a custom workflow.
- Workflow File: You can find the deployment workflow at
.github/workflows/storybook-deploy.yml
- Deployment URL: The deployed Storybook can be accessed at https://gmickel.github.io/turborepo-shadcn-nextjs/
<tbody>
<tr>
<td align="center">
<a href="https://github.com/gmickel">
<img src="https://avatars.githubusercontent.com/u/139907?v=4" width="100;" alt="gmickel"/>
<br />
<sub><b>Gordon Mickel</b></sub>
</a>
</td>
</tr>
<tbody>