Move software files one directory up, Readme

This commit is contained in:
2024-11-19 16:51:28 +01:00
parent baf763c4cb
commit 1dc5740f03
329 changed files with 255 additions and 31 deletions

37
electron-builder.json Normal file
View File

@@ -0,0 +1,37 @@
{
"asar": true,
"appId": "de.luh.app",
"directories": {
"output": "out"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "Electron App"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": ["deb"],
"maintainer": "Tobias Zoghaib"
},
"files": [
{
"from": "build",
"to": "build",
"filter": ["**/*"]
},
"!backend",
"!electron",
"!release",
"!src",
"!dist",
"!out"
]
}