Skip to content

Configuration and plotting tool for the CATS flight computers

Notifications You must be signed in to change notification settings

catsystems/cats-configurator

Repository files navigation

CATS Configurator

CATS Logo

Always land on your paws

Open Source

All CATS code is open source and can be used free of charge without warranty.

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:9080
npm start

# build electron application for production
npm run build

How to debug

Because webpack's devtool option is set to source-map a source map is emitted as a separate file which makes debugging possible.

Visual Studio Code

Include the following under .vscode/launch.json:

{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "chrome",
      "request": "launch",
      "name": "vuejs: chrome",
      "url": "http://localhost:8080"
    }
  ]
}

Set your breakpoints, start the app via npm start, select the vuejs: chrome configuration in debug view and press F5 or click the green play button.