From 7495f91b9adf92ac8bbc54e91af56340f1550b73 Mon Sep 17 00:00:00 2001 From: kashish Date: Sat, 2 May 2026 12:12:16 +0530 Subject: [PATCH] docs: fix local dev instructions for Mintlify --- CONTRIBUTING.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dae75a8523e..5c1b6e42841 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -82,16 +82,20 @@ You can run the documentation server locally using either of the following metho 1. Open your terminal and navigate to the `docs` subdirectory of the project. The `favicon.png` file you'll see there is a sign you're in the right place. -2. Run the following command to install the necessary dependencies for the documentation server: +2. Install the Mintlify CLI globally : + ```bash + npm install -g mint + ``` +3. Install project dependencies ```bash - npm install + npm install ``` 3. Run the following command to start the documentation server: ```bash - npm run dev + mint dev ``` #### Method 2: VS Code Task