The project need to be run in two differents shell, one for the client and one for the server.
cd Client
npm install
npm run serve
npm run build
npm run test
npm run lint
Install mongoDB, you can refer to this link: official website. Then download this file: primer-dataset.json. Now create a data base with the json file:
mongoimport --db test --collection restaurants --drop --file primer-dataset.json
Go to the server path and install all npm depedency:
cd server
npm install
npm run dev-server