Initial commit

This commit is contained in:
Aodhan Collins
2025-10-06 00:33:04 +01:00
commit 66749a5ce7
71 changed files with 22041 additions and 0 deletions

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

@@ -0,0 +1,57 @@
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "EVE",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"window": {
"all": true,
"close": true,
"hide": true,
"show": true,
"maximize": true,
"minimize": true,
"unmaximize": true,
"unminimize": true,
"startDragging": true,
"setAlwaysOnTop": true
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.eve.assistant"
},
"security": {
"csp": null,
"devCsp": "default-src 'self' 'unsafe-inline' 'unsafe-eval' http://localhost:1420; connect-src 'self' ws://localhost:1420"
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "EVE - Personal Desktop Assistant",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"decorations": true,
"alwaysOnTop": false,
"transparent": false
}
]
}
}