This project shows a minimal boilerplate project structure to use Olympe built into an Electron project.
- Update the
res/oConfig.json
file to set the parameters of your environment and application to start. - Develop your bricks in the folder
src/bricks
. - Run the following command to run your application in development mode:
npm run start
- Run the following command to test your final build:
npm run serve:dist
- Build the binary file:
npm run dist
Have a look at the config
section of the package.json
file and update it according to the instructions in the following page.
Code inspired by the repository electron-webpack-boilerplate available on Github.