Skip to content

Latest commit

 

History

History

ui

Infra Dashboard

This directory contains the source code for the Infra Dashboard.

Set up

  • Install the latest version of Node.js brew install node
  • Install the following extensions if using Visual Studio Code:

Develop

Follow the instructions in the test config file.

npm install
npm run dev

Build and run

npm run build
npm start

Linting

Linting is done via ESLint

npm run lint

Formatting

Code is formatted using Prettier

To check for issues:

npm run format

To fix:

npm run format:fix