Based on quest-sidenoder
New interface built in Vue with some new features
Make sure to use at least node v15 and npm v7!
You can check your current version by running node --version
and npm --version
respectively.
To update node, follow the install instructions here. To update npm you can run npm i -g npm@7
.
After that, clone the project and run npm install
to download all dependencies.
See below for a list of usefull commands
This is the primary command to run the app
npm run serve
npm run build
After any changes to the code, make sure they are formatted correctly using prettier by running
npm run fmt
Before a commit, make sure all files are formatted correctly and pass all eslint checks by running
npm run test
This is also run as a pre-commit hook automatically using husky.