Skip to main content
You are here: Setup Guides

Install Powerport Panel

Overview

Install Powerport Panel on your Ubuntu/Debian system to manage and monitor your applications.

Install Prerequisites

Install curl and software-properties-common: sudo apt install -y curl software-properties-common

Add the Node.js repository: curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -

Install Node.js: sudo apt install nodejs -y

Install Git: sudo apt install git -y

Installation

Clone the Powerport Panel repository: git clone https://github.com/powerport-labs/panel.git

Navigate to the panel directory: cd panel

Install the project dependencies: npm install

Build the application: npm run build:user

You may optionally seed the database with sample data using npm run seed. This is beneficial for testing or demonstrations.

Start the application: node .

Accessing the Panel

The panel should now be running at port 3001. Access it in your web browser by navigating to http://localhost:3001.