This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 73cca31c60 Ui: add instruction to use required nodejs version (#15181)
73cca31c60 is described below
commit 73cca31c60fc2960691bd1bf0dd3ee6e3938458d
Author: Jayesh Choudhary <[email protected]>
AuthorDate: Wed Mar 5 00:39:12 2025 +0530
Ui: add instruction to use required nodejs version (#15181)
---
pinot-controller/src/main/resources/Readme.md | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/pinot-controller/src/main/resources/Readme.md
b/pinot-controller/src/main/resources/Readme.md
index 524eb56ff5..a535fbc5d5 100644
--- a/pinot-controller/src/main/resources/Readme.md
+++ b/pinot-controller/src/main/resources/Readme.md
@@ -29,13 +29,18 @@ This package contains code for Pinot Controller UI.
```shell
cd pinot-controller/src/main/resources
```
-3. Install Required Packages. Make sure you are using node v16 or more
specifically v16.15.0
+3. Switch to node `v16.15.0`.
+Use nvm to switch to the required Node.js version (specified in .npmrc). If
you don’t have nvm, install it from [here](https://github.com/nvm-sh/nvm).
+```shell
+nvm use
+```
+4. Install Required Packages. Make sure you are using node v16 or more
specifically v16.15.0
```shell
npm install
```
-4. Start the Development Server
+5. Start the Development Server
```shell
npm run dev
```
-5. App should be running on [http://localhost:8080](http://localhost:8080)
+6. App should be running on [http://localhost:8080](http://localhost:8080)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]