New Electron version of FinalMinistry, it includes a Territory Designer and Manager
...
You need to have Node.js installed (v18 or higher) and NPM (comes with Node.js). Also install Angular CLI globally:
npm install -g @angular/cliThen run the following commands to install the dependencies and build the UI:
# In the root folder
npm install
# In the ui folder
ui/npm install
ui/ng buildStart the application in developer mode:
# In the root folder
npm start
# or start both Electron and Angular concurrently
npm run devBuild it locally as an executable (in Windows you need to open CMD in Admin mode):
# In the root folder
npm run packThis will create a folder called release with the executable and all the files needed to run it. You can copy this folder to any computer and run the executable. The release folder will be created in the root folder of the project.
Feel free to contact me if you have questions.