Examples for common monorepo tasks:
Install a dependency in a specific app (or package)
pnpm i foobar -F <app-name>
# pnpm i foobar -F <package-name>
-F stands for filter Dont cd into apps/bot and try to pnpm i there
Install a dependency in the repo root
pnpm i foobar -w
Build the entire repo
pnpm build:all
Generate and apply migrations
pnpm db:migrate
Lint the entire project
pnpm lint