Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.29 KB

README.md

File metadata and controls

38 lines (27 loc) · 1.29 KB

Vuejs RealWorld Testing

This is a full Vuejs application based on RealWorld Example App, it's used in Zid to test frontend developers by let them pair with one of current developers to fix issues and add features.

Getting started

Before contributing please read the following:

  1. RealWorld frontend instructions
  2. Realworld API endpoints
  3. Vue.js styleguide.
  4. Editorconfig setup. Most of the common editors support editorconfig by default (check the editorconfig download link for your ide), but editorconfig npm package have to installed globally for it to work,
# install editorconfig globally
> npm install -g editorconfig

The stack is built using vue-cli webpack so to get started all you have to do is:

# install dependencies
> yarn install
# serve with hot reload at localhost:8080
> yarn serve

Other commands available are:

# build for production with minification
yarn run build

# run unit tests
yarn test