Initialize repo

This commit is contained in:
Kazimierz Ciołek
2026-02-02 13:56:14 +01:00
commit 7ecefb5621
127 changed files with 219019 additions and 0 deletions

40
src-tauri/tauri.conf.json Normal file
View File

@@ -0,0 +1,40 @@
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"productName": "NordicFlow",
"version": "0.1.0",
"identifier": "pl.kamici.nordicflow",
"plugins": {
"process": {
"active": true
}
},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "NordicFlow",
"width": 1000,
"height": 600,
"dragDropEnabled": false
}
]
}
}