- Clone this repository
- Make sure Node.js version 18.16 or higher is installed (you can use nvm to manage Node.js versions)
- Run
npm i
to install dependencies - Run
npm run dev
to start the development server - Open http://localhost:3000 with your browser to see the result
Follow the Conventional Commits specification.
main
: The main branch. This branch is protected and cannot be pushed to directly.dev
: The development branch, where all new features are merged into.feature/<feature-name>
: A feature branch. This branch is branched off ofdev
and merged back intodev
when the feature is complete.fix/<fix-name>
: A fix branch. This branch is branched off ofdev
and merged back intodev
when the fix is complete.
npm i
npm i <package-name> --workspace=<package-name>
Run the following command:
npx create-turbo@latest
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 bothweb
anddocs
applications@repo/eslint-config
:eslint
configurations (includeseslint-config-next
andeslint-config-prettier
)@repo/typescript-config
:tsconfig.json
s 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
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 my-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
Learn more about the power of Turborepo: