Setting up the Thermal development enviroment is easy as go. At it's core, Thermal is build using Electron & Vue.js
Clone repository
You can begin by forking the repository and later cloning the forked repository.
Install packages
Thermal uses Yarn to install, update, and manage the packages.
Run the yarn
command inside the Thermal directory to install the packages.
Run locally
Now you are ready to build the Thermal application locally.
You can combine multiple script commands by &&
, for example: yarn lint:fix && yarn dev
.
yarn lint:fix
: Eslint lint and fixes the issuesyarn dev
: Run Thermal application locally.
It's not required but recommended to run
yarn lint:fix
command along withyarn dev
command.