- Node.js
- A package manager (
npmoryarn)
-
Download the Installer
- Visit nodejs.org
- Download the Windows LTS version
-
Run the Installer
- Launch the downloaded
.msifile - Accept the license, use default settings
- Ensure “Add to PATH” is checked
- Click Install, then Finish
- Launch the downloaded
-
Verify Installation
node -v npm -v
-
Update your system package list
sudo apt update sudo apt install -y nodejs npm
-
Verify Installation
node -v npm -v
git clone https://github.com/VarshithPawarHR/HPE-Dashboard
cd HPE-DashboardCreate a .env file inside the HPE-Dashboard folder (refer .env.example):
NEXT_PUBLIC_API_URL=http://127.0.0.1:8000/
npm install
# or
yarn installnpm run dev
# or
yarn devDashboard will be available at: http://localhost:3000
- Backend runs on
http://127.0.0.1:8000 - Frontend runs on
http://localhost:3000 - Connected via REST APIs
Once both are running, navigate to the dashboard to view real-time storage forecasts.
Open http://localhost:3000 with your browser to see the result.