Web based explorer for k.LAB engine.
The k.Explorer is served by the k.LAB engine using the compiled version.
k.Explorer is developed using the 0.17 version of Quasar Framework
First, we install Quasar CLI. Make sure you have Node >=8 and NPM >=5 installed on your machine.
# remove old quasar-cli package if you have it
$ npm uninstall -g quasar-cli
# or with yarn
$ yarn global remove quasar-cli
# install the latest cli
$ npm install -g @quasar/cli
# or with yarn
$ yarn global add @quasar/cli
Use yarn to install
# install everything using package.json and yarn.lock
$ cd [project dir]
$ yarn
If you want to use it in developer mode, use quasar-cli or package.json script
# start dev server
$ quasar dev
# or $ yarn quasar-dev
To use in developer mode, open a browser and go to [http://localhost:8080/viewer?session=]
where session-id
is the session number that appear in the console of k.LAB engine
To generate build files, use quasar-cli or the or package.json script.
The result of building must be copied in the folder klab.engine/src/main/resources/static/ui
of the k.LAB source
$ quasar build
# or
$ yarn quasar-build
See CHANGELOG.md