This is the web user interface for the Kytos project. For more information on how to use it, please refer to the UI documentation.
# install dependencies (should always be done first)
npm install
# starts the dev server, serve with hot reload at localhost:8080
npm run dev
# build UI for preproduction without minification and with sourcemaps for better error logs (used for debugging/testing)
npm run preprod
# build UI for production with minification (more efficient and takes up less storage)
npm run build
# builds the UI for production (like the previous command) and then zips it
npm run zip
# view the most recent build locally
npm run preview
To create a new release file you need to run the command below and during the procedure to create a new release on github you need append the file latest.zip.
# build for production and compress the file as latest.zip
npm run zip
After build and upload the file in the github, the Kytos has an endpoint to see the latest release version and download the latest.zip file from github and unpack it in the kytos/web-ui folder.
This update command can be trigger using the kytos-utils command displayed below. If no version is specified the latest version of kytos/ui on github will be used.
# update the kytos web-ui to latest version
$ kytos web update
# update the kytos web-ui to a specific version
$ kytos web update <version>
For detailed explanation on how things work, consult the docs for vue-loader.