The readme lists 'conda', but conda is actually not needed at all anymore for development. Current instructions are roughly:
cd ./WebUi/
npm install
npm run fetch-resources
cp ../build/resources/uv.exe ../uv.exe
npm run dev
(exact paths and actual commands/scripts names are most probably slightly wrong here)
Files should be placed in the correct location?
- manual copy uv.exe to repo root?
- but it gets downloaded to build/resources/uv.exe?
A different path is used whether the app is packaged or not (app.isPackaged). For uv with npm run dev, it still needs to be configured correctly. It's probably best to adjust the script to take the exe directly from build/resources/ instead.
The readme lists 'conda', but conda is actually not needed at all anymore for development. Current instructions are roughly:
(exact paths and actual commands/scripts names are most probably slightly wrong here)
Files should be placed in the correct location?
A different path is used whether the app is packaged or not (
app.isPackaged). Foruvwithnpm run dev, it still needs to be configured correctly. It's probably best to adjust the script to take the exe directly from build/resources/ instead.