Clone the repo and download the latest packages
git clone https://github.com/CarossaOper/oper-frontend
cd oper-frontend
Serve application using vue-cli:
npm install
npm run serve
or the custom server:
npm run build
node serve.js
This won't start the backend server
Build the docker image
docker build -t oper-frontent:latest .
Run docker container and expose ports (in this case 80)
docker run -d -p 80:80 oper-frontend:latest
npm run lint