Running
How to run and build the web app and docs site locally.
Running locally
All commands are run from the repository root.
Development servers
Web app (SolidStart):
pnpm devOpens at http://localhost:5173.
Docs site (Fumadocs/Next.js):
pnpm dev:docsOpens at http://localhost:3000. Documentation lives at http://localhost:3000/docs.
Run each in a separate terminal if you want both at once.
Build for production
- Build everything:
pnpm build - Web only:
pnpm build:web - Docs only:
pnpm build:docs
Start production builds
- Web (after
pnpm build:web):pnpm --filter PackageHub-web start - Docs (after
pnpm build:docs):pnpm --filter PackageHub-docs start
See Repo architecture for how the monorepo is structured.