This repo uses pnpm instead of npm, install it using this guide
Being developed by DitherWither and Arthavruksha
This Turborepo includes the following packages/apps:
Everything that gets deployed directly goes in apps/
.
Everything that gets imported by other packages goes in packages/
app/docs
: a Next.js app, currently not used, will contain docs laterapps/web
: another Next.js apppackages/eslint-config-custom
:eslint
configurations (includeseslint-config-next
andeslint-config-prettier
)packages/tsconfig
: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
To build all apps and packages, run the following command:
cd my-turborepo
pnpm build
To develop all apps and packages, run the following command:
cd my-turborepo
pnpm dev