docs: update documentation instructions for running locally with dependency installation

This commit is contained in:
Firman Ramdhani
2026-06-24 19:19:11 +07:00
parent 293069a594
commit dc2eeae731
+8 -1
View File
@@ -33,8 +33,15 @@ This repository utilizes a monorepo architecture to seamlessly share core system
* **View in Git Repository (Raw Markdown):** [Read Overview Documentation](apps/docs-dev/src/overview.md)
* **Run Documentation Locally:**
If this is your first time running the documentation, ensure you install the dependencies first:
```bash
pnpm --filter docs-dev dev
pnpm install
```
Then, start the documentation server:
```bash
pnpm dev:docs-dev
```
---