This repository is a resource to a blog post I made on adding turborepo to an existing project.
It came after I've made a PR converting the novel website from a website to an npm package. Since it was a bit of a hassle, I decided to write a blog post about it and help others who might want to do the same.
It structured as follows:
- apps
- website
- dashboard
- packages
- ui
The website
and dashboard
are Next.js apps, both rendering the SignIn
component from the ui
package.
You can run the apps locally by pnpm install
and then pnpm dev
in the website
and dashboard
directories.