AcademicDealerFrontend

Project setup

Important Tutorials

  1. W3C Tutorial for HTML, CSS and Javascipt
  2. Vue Official Guide

Development Environment

We recommend use VS Code for development. VS Code should be configured to automatically format code on save. Our recommanded VS Code formatter component is Vuetr with Prettier and ESLint.

Dependencies

  1. Vue.js, a powerful frontend development framework
  2. Vuex, centralized state management for Vue.js
  3. Vue Router, routing for Vue.js
  4. Element UI, a desktop UI library for Vue 2.0
  5. Vue Resource, a simple library for HTTP request/response

With npm it is simple to install all the dependencies

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Run your tests

npm run test

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.

Use local API server to test

On unix-like system:

$ cd tests
$ pip install falcon falcon-cors gunicorn
$ ./serve.sh

On Windows:

$ cd tests
$ pip install falcon falcon-cors waitress
$ serve.bat