This is an official monorepo for Restruct architecture tools.
This is a monorepo project setup using Turbo.
- monorepo setup (turborepo)
- code formatter setup (prettier)
- initial vscode extension app setup (vite)
- testing library setup (vitest)
- ui library integration (nextui or shadcn/ui)
docs
: a Next.js appweb
: another Next.js app@structurizr/dsl
: a library for building Structurizr workspaces and C4 diagrams with typescript.@structurizr/react
: a React component library for buiding Structurizr workspaces and rendering C4 diagrams.@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
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