Skip to content
This repository was archived by the owner on Jun 30, 2026. It is now read-only.

Latest commit

 

History

History
49 lines (26 loc) · 795 Bytes

File metadata and controls

49 lines (26 loc) · 795 Bytes

Analytics dashboard enables users to interact with the Open API for Analytics.

REQUIREMENTS

CLONE

git clone git@github.com:far-edge/analytics-dashboard.git

CREATE THE VIRTUAL ENVIRONMENT

cd analytics-dashboard
nodeenv -n 10.1.0 --prebuilt env

ACTIVATE THE VIRTUAL ENVIRONMENT

source env/bin/activate

INSTALL DEPENDENCIES

npm install

CONFIGURE

Create .env based on .env.example.

cp .env.example .env

Edit .env.

BUILD & DEVELOP

npm start

BUILD & DISTRIBUTE

npm run build

The dist folder contains the build to be distributed.

LINT

npm run lint

DEACTIVATE THE VIRTUAL ENVIRONMENT

deactivate_node