The application is written in reactive framework Vue.
-
Installing dependencies
npm install
-
Running the dev server
npm run serve
-
Visit the webpage in browser (by default the URL is http://localhost:8080)
Unit tests allow you to test individual units of code in isolation. The purpose of unit testing is to provide developers with confidence in their code. By writing thorough, meaningful tests, you achieve the confidence that as new features are built or your code is refactored your application will remain functional and stable. You can learn about unit tests here.
The code is automatically deployed to the webserver using CI pipeline after merge into master
branch.