Open kustomzone opened 1 month ago
Hi, src/js/frontend/node_modules and
src/js/backend/node_modules
are required by electrico itself.
I included them to make it easier for users to start first tests with electrico (no npm install or custom script, only rustup/cargo toolchain needed).
The test app /Resources/*
has its only dependency on 'electron', which is not needed by electrico.
If you want to start the test app with electron - from folder /Resources
run:
npm install
npm run start
Hi, were
src/js/frontend/node_modules
andsrc/js/backend/node_modules
included by accident? They are .gitignored inResources/
sopnpm install --recursive
(or similar) could be added to the 'Test App' instructions?