Skip to content

Latest commit

 

History

History
84 lines (49 loc) · 2.26 KB

README.md

File metadata and controls

84 lines (49 loc) · 2.26 KB

Multidimensional Visual Analyser (MVA)

MVA web application is deployed at https://tugraz-isds.github.io/mva/.

Web Application

Developing

Install dependencies and start a development server:

npm install
npm run dev

Building

To create a production version of your app:

npm run build

This command creates build/ folder which can be deployed.

You can preview the production build with:

npm run preview

Resources

MVA web application is built with SvelteKit using create-svelte.


Native Application

Developing

Before continuing, make sure you have completed the prerequisites to have a working development environment.

Once you've installed all Tauri prerequisites, install dependencies and start a development server:

npm install
npm run dev-tauri

You can find more detailed information in the official Tauri guide for SvelteKit.

Building

To create a production version of your app:

npm run build-tauri

This command creates build-tauri/win32/ folder with executables and installables.

You can find more detailed information in the official Tauri guide for building.

Resources

MVA native application is built with Tauri.

Custom Scripts

We defined a few custom Gulp scripts in gulpfile.js:

  1. npm run clean or npx gulp clean

Removes the existing build/, build-tauri, and src-tauri/target directories to enable a clean rebuild of the project.

  1. npm run clean-all or npx gulp cleanAll

Removes existing .svelte-kit/, build/, build-tauri, node_modules/ and src-tauri/target directories to enable a clean reinitialization of the project.

  1. npm run optimize-icons or npx gulp optimizeIcons

If new icons are added or existing ones are updated, run this following script. Icons should be added into static/icons/ folder. The optimize-icons script reads static/icons/ folder recursively and exports .svg files into TypeScript constants that are saved into src/util/icon-definitions.ts file.