Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.19 KB

README.md

File metadata and controls

48 lines (36 loc) · 1.19 KB

Weather Now

A simple weather app written in VueJS

CircleCI codecov

Contributing

  1. Install Node. Download the "Recommend for Most Users" version.

  2. Clone the repo:

git clone git@github.com:rafaelcamargo/weather-now-vue.git
  1. Go to the project directory
cd weather-now-vue
  1. Install the project dependencies
npm install
  1. If you want just build the project, run:
npm run build
  1. Otherwise, run:
npm run start

The app will be running on http://localhost:7000 and the browser will automatically reload with the changes you make in any source file.

Tests

  1. Ensure that all code that you have added is covered with unit tests:
npm run test
  1. You can optionally generate coverage report after running tests:
npm run test -- --coverage