Initial Commit

This commit is contained in:
2026-09-16 17:22:14 +09:00
commit 858ee9e9da
335 changed files with 123898 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "CodeAssist",
"version": "0.1.0",
"identifier": "com.codeassist.app",
"build": {
"beforeDevCommand": { "cwd": "../../2_frontend", "script": "npm run dev" },
"devUrl": "http://localhost:15173",
"beforeBuildCommand": { "cwd": "../../2_frontend", "script": "npm run build" },
"frontendDist": "../../2_frontend/dist"
},
"app": {
"withGlobalTauri": false,
"windows": [
{
"label": "main",
"url": "/snap",
"title": "CodeAssist",
"width": 960,
"height": 680,
"center": true,
"resizable": true,
"decorations": false,
"visible": true
}
],
"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"
]
}
}