FETtec ESC Configuration tool
FETtec ESC Configurator is a crossplatform configuration tool for the FETtec ESC's.
This is the default installation method, and at some point in the future this will become the only way available for most platforms. Please use this method whenever possible.
Download the installer from Releases.
- Install node.js
- Change to project folder and run
yarn install
. - Run
yarn start
.
The tasks are defined in gulpfile.js
and can be run either yarn gulp <task-name>
:
- Run
yarn gulp <taskname> [[platform] [platform] ...]
.
List of possible values of <task-name>
:
- dist copies all the JS and CSS files in the
./dist
folder. - apps builds the apps in the
./apps
folder [1]. - debug builds debug version of the apps in the
./debug
folder [1]. - release zips up the apps into individual archives in the
./release
folder [1].
[1] Running this task on macOS or Linux requires Wine, since it's needed to set the icon for the Windows app (build for specific platform to avoid errors).
To build or release only for one specific platform you can append the plaform after the task-name
.
If no platform is provided, all the platforms will be done in sequence.
- MacOS use
yarn gulp <task-name> --osx64
- Linux use
yarn gulp <task-name> --linux64
- Windows use
yarn gulp <task-name> --win32
You can also use multiple platforms e.g. yarn gulp <taskname> --osx64 --linux64
.