Vehicle Paths Demo construction application

Application demonstrate event detail vehicle location dot and pathes (by Pavel Tretyakov)

Install

To init project you can use npm or yarn, by the next instructions will use yarn package manager commands

yarn install

Building

To build project use command

yarn build

Development

To compile project and run dev server run:

yarn start

Webpack start dev server on 9000 port by default. To change port you can:

  • Update package.json start script:
"start": "NODE_ENV=develop PORT=YOUR_PORT node node_modules/.bin/webpack-dev-server",
  • Set spicific port on start command:
env PORT=YOUR_PORT yarn start
  • Use configs/dev.json PORT config
"PORT": YOUR_PORT