# {{project-name}} A full-stack monorepo powered by [Turborepo](https://turbo.build). ## Structure ``` apps/ product/ — core user-facing application website/ — marketing and landing pages admin/ — internal admin tooling storybook/ — component browser and design system packages/ ui/ — shared React component library tokens/ — design tokens (colors, typography, spacing) types/ — shared TypeScript types config/ — shared eslint and tsconfig base configs ``` ## Getting Started ```bash pnpm install pnpm dev ``` ## Running a specific app ```bash turbo run dev --filter=product turbo run dev --filter=website turbo run dev --filter=admin ``` ## Building ```bash pnpm build # or a single app turbo run build --filter=product ``` ## Adding a new app ```bash cd apps npx create-next-app@latest my-new-app # then add it to the workspace — pnpm will pick it up automatically ``` ## Adding a new shared package ```bash mkdir packages/my-package # add a package.json with name "@{{project-slug}}/my-package" # reference it from any app: "@{{project-slug}}/my-package": "workspace:*" ```