Install the node version set in .nvmrc
and then:
npm install
npm run serve
npm run build
npm run test
npm run lint
Build and run the application in docker with:
docker build -t sp-frontend .
docker run -it -p 8080:80 --rm sp-frontend:latest
This is to be used in production, in development npm run serve
is usually better.