The following requirements are assumed to be installed on your computer:
First, pull the project into your working environment:
git pull git@github.com/mayoz/vuejs-todo-clientThen pull the packages it depends on:
npm installDo not forget to change the .env file.
To quickly run (compile and hot-reloads) the application in the development environment:
npm run serveYou should be able to access the app on localhost:8080.
Other commands can be use in development environment:
- Run your unit tests:
npm run test:unit - Lints and fixes files:
npm run lint