Skip to content

davidszell/lizard-monitor

Repository files navigation

Lizard Monitor

Version License Codacy Badge Build Status

Lightweight web dashboard to monitor system resources.

Install and run

You need Node.js installed on your machine. You can download it here.

Run latest pre-built release

Step 1

## create a directory for the application
mkdir lizard-monitor

## navigate to the created directory
cd lizard-monitor

## download and unpack the pre-built archive
curl -LOk https://github.com/davidszell/lizard-monitor/releases/latest/download/pre-built.tar.gz && tar -xzf pre-built.tar.gz

Step 2

## install dependencies
npm install --production

Step 3

## start the application (on default port 3000)
npm run start:prod

Build and run latest version

Step 1

## 1. clone the repo
git clone --depth 1 https://github.com/davidszell/lizard-monitor.git

## 2. go to the cloned directory
cd lizard-monitor

OR, if you prefer to download manually:

## 1. Download the .zip
curl -LOk https://github.com/davidszell/lizard-monitor/archive/main.zip && unzip main.zip

## 2. navigate to downloaded & unzipped dir
cd lizard-monitor-main

Step 2

## install dependencies
npm install

## build the application
npm run build:prod

Step 3

## start the application (on default port 3000)
npm run start:prod