https://github.com/markkos89/turbo-phala-monorepo
Phala Network tools oriented monorepo. Built during @developer-dao & @phala-network Hackaton sept' 2023 with @HAPPYS1NGH & @peteruche21
https://github.com/markkos89/turbo-phala-monorepo
monorepo phala starter template turbo
Last synced: about 1 year ago
JSON representation
Phala Network tools oriented monorepo. Built during @developer-dao & @phala-network Hackaton sept' 2023 with @HAPPYS1NGH & @peteruche21
- Host: GitHub
- URL: https://github.com/markkos89/turbo-phala-monorepo
- Owner: Markkos89
- License: mit
- Created: 2023-09-09T17:32:37.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-13T05:01:58.000Z (almost 3 years ago)
- Last Synced: 2025-02-13T07:33:07.533Z (over 1 year ago)
- Topics: monorepo, phala, starter, template, turbo
- Language: TypeScript
- Homepage:
- Size: 6.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Next.js & Tailwind CSS Monorepo Template
This is a monorepo template using:
- ๐ [TypeScript 5.0](https://www.typescriptlang.org/)
- โก๏ธ [Next.js 13.2](https://nextjs.org/)
- โ๏ธ [React 18.2](https://reactjs.org/)
- ๐ฌ๏ธ [Tailwind CSS 3.3](https://tailwindcss.com/)
- ๐ [Storybook 7.0](https://storybook.js.org/)
- ๐งช [Testing Library](https://testing-library.com/)
- ๐ [Jest](https://jestjs.io/)
- ๐ญ [Playwright](https://playwright.dev/)
- ๐ก [Lighthouse](https://developer.chrome.com/docs/lighthouse/)
- ๐งน [ESLint](https://eslint.org/)
- ๐ค [CommitLint](https://commitlint.js.org/)
- ๐ [Prettier](https://prettier.io/)
- ๐ฆ [pnpm](https://pnpm.io/)
- ๐๏ธ [Turborepo](https://turbo.build/repo)
- ๐ท [Github Actions](https://github.com/features/actions)
## What's inside?
This monorepo includes a few apps and packages.
### Apps and Packages
- `apps/website-ssr`: a Next.js app with Tailwind CSS
- `apps/website`: another Next.js app with Tailwind CSS
- `packages/ui`: a stub React component library with Tailwind CSS, shared by both `website-ssr` and `website` apps
- `packages/utils`: utilities shared by both `website-ssr` and `website` apps
- `packages/eslint-config-custom`: shared ESLint configuration
- `packages/jest-config`: shared Jest configuration
- `packages/lighthouse-config`: shared Lighthouse configuration
- `packages/next-config`: shared Next.js configuration
- `packages/playwright-config`: shared Playwright configuration
- `packages/storybook-config`: shared Storybook configuration
- `packages/tailwindcss-config`: shared Tailwind CSS configuration
- `packages/typescript-config`: shared `tsconfig.json` files
## Using this template
Run the following command:
```
npx degit markkos89/turbo-monorepo-template my-monorepo
cd my-monorepo
pnpm install
```
### Develop Next.js
If you want to start `apps/website-ssr` and `apps/website` in development mode, and watch for changes in `packages/ui`, run at the root:
```
pnpm dev
```
### Build Next.js
If you want to build `apps/website-ssr` and `apps/website` for production, run at the root:
```
pnpm build
```
If you want to see an analysis of the generated bundles, specify the `ANALYZE` environment variable:
```
ANALYZE=true pnpm build
```
### Preview Next.js
If you want to preview production builds of `apps/website-ssr` and `apps/website`, run at the root:
```
pnpm start
```
### Develop Storybook
If you want to start all Storybook projects in development mode, run at the root:
```
pnpm storybook:dev
```
### Develop Storybook
If you want to build all Storybook projects, run at the root:
```
pnpm storybook:build
```
### Unit tests
If you want to run unit tests for all projects, run at the root:
```
pnpm test:unit
```
### End-to-end tests
If you want to run e2e tests for all projects, run at the root:
```
pnpm test:e2e
```
### Lint
If you want to run linting for all projects, run at the root:
```
pnpm lint
```