initial commit with full project

This commit is contained in:
2026-04-26 17:50:04 +03:00
commit 53044e7d40
68 changed files with 34115 additions and 0 deletions

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

@@ -0,0 +1,41 @@
{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
"productName": "Cinch",
"version": "1.0.0",
"identifier": "com.cinch.app",
"build": {
"frontendDist": "../build",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"withGlobalTauri": false,
"security": {
"csp": null
},
"windows": [
{
"title": "Cinch",
"width": 960,
"height": 700,
"minWidth": 700,
"minHeight": 500,
"resizable": true,
"decorations": false,
"transparent": false
}
]
},
"bundle": {
"icon": [
"icons/icon.ico",
"icons/icon.png"
]
},
"plugins": {
"shell": {
"open": true
}
}
}