docs: add project README and initialize repository

This commit is contained in:
2026-05-30 15:36:11 +08:00
commit 566fc822d5
39 changed files with 7124 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "PortFlow",
"version": "0.1.0",
"identifier": "com.administrator.portflow",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "PortFlow - 端口管理控制台",
"width": 1150,
"height": 760,
"minWidth": 980,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": false,
"center": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["nsis"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}