Initial commit

This commit is contained in:
2025-07-17 13:52:11 -07:00
commit 04db244c97
39 changed files with 7465 additions and 0 deletions

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

@@ -0,0 +1,37 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "berry-manager",
"version": "1.0.0",
"identifier": "xyz.lncvrt.berrydash-manager",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Berry Dash Manager",
"width": 800,
"height": 600,
"resizable": false,
"maximizable": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}