From dc2eeae73179c736c08a2c23652c6429fc915d18 Mon Sep 17 00:00:00 2001 From: Firman Ramdhani <33869609+firmanramdhani@users.noreply.github.com> Date: Wed, 24 Jun 2026 19:19:11 +0700 Subject: [PATCH] docs: update documentation instructions for running locally with dependency installation --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 42738ac..0227457 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,16 @@ 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:** -```bash -pnpm --filter docs-dev dev -``` + + If this is your first time running the documentation, ensure you install the dependencies first: + ```bash + pnpm install + ``` + + Then, start the documentation server: + ```bash + pnpm dev:docs-dev + ``` ---