Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 805 Bytes

File metadata and controls

32 lines (20 loc) · 805 Bytes

Development guide

The SimDB dashboard is a single page Vue.js application built using Vite and npm.

The SimDB dashboard consists of a few pages being served from a flask app, with the frontend interactivity being handled by the Vue.js library.

The dashboard consists mostly of static pages and javascript files, with Flask being used to set some configuration values in the html pages being served.

Setting up a development environment

You can clone the code using git and run a development version of the dashboard using:

git clone git@github.com:iterorganization/SimDB-Dashboard.git
cd SimDB-Dashboard/dashboard
npm install
npm run dev

You can build the dashboard using:

npm run build

and can serve it using a test server by running:

npm run preview