This monorepo includes the following packages/apps:
Apps:
codac-ts-next-tailwind
: a Next.js app with Tailwind CSS dedicated to UI components develomentcodac-ts-next-lms
: a Next.js app with Tailwind CSS dedicated to making a standadole LMS interfacecodac-ts-next-mui
: a Next.js app with MUI v5web
: another Next.js app with Tailwind CSS Packages:codac-administration
: a graphql types code generation app using codegen. It generates types and custom react hooks to query the CODAC administration backendcodac-ui
: a stub React component library with Tailwind CSS shared by bothcodac-ts-next-tailwind
andstorybook
applicationseslint-config-custom
:eslint
configurations (includeseslint-config-next
andeslint-config-prettier
)tailwind-config
: Commonalized theme of Tailwind Tailwind CSStsconfig
:tsconfig.json
s used throughout the monorepo
Each package/app is 100% TypeScript.
This page generates the types and custom Apollo GraphQl hooks from a Strapi backend Strapi Admin GraphQl Playground
This example is setup to build packages/codac-ui
and output the transpiled source and compiled styles to dist/
. This was chosen to make sharing one tailwind.config.js
as easy as possible, and to ensure only the CSS that is used by the current application and its dependencies is generated.
Another option is to consume packages/ui
directly from source without building. If using this option, you will need to update your tailwind.config.js
to be aware of your package locations, so it can find all usages of the tailwindcss
class names.
For example, in tailwind.config.js:
content: [
// app content
`src/**/*.{js,ts,jsx,tsx}`,
// include packages if not transpiling
"../../packages/**/*.{js,ts,jsx,tsx}",
],
This Turborepo has some additional tools already setup for you:
- Tailwind CSS for styles
- TypeScript for static type checking
- ESLint for code linting
- Prettier for code formatting
- Fork the project
- Create your feature branch (git checkout -b feature/AmazingFeature)
- Make your changes
- Commit your changes (git commit -m 'Add some AmazingFeature')
- Push to the branch (git push origin feature/AmazingFeature)
- Open a pull request