moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Waggle",
"version": "0.2.0",
"identifier": "com.egzakta.waggle",
"build": {
"frontendDist": "../../apps/web/dist",
"devUrl": "http://localhost:8080",
"beforeDevCommand": "cd ../apps/web && npx vite",
"beforeBuildCommand": "node ../scripts/build-sidecar.mjs && node ../scripts/check-sidecar-resources.mjs && cd ../apps/web && npx vite build"
},
"bundle": {
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico", "icons/icon.png"],
"active": true,
"targets": "all",
"resources": ["resources/*", "resources/native/*", "resources/native/onnxruntime/*", "resources/node_modules/**/*"],
"windows": {
"nsis": {
"installerHooks": "nsis/installer.nsi",
"installerIcon": "icons/icon.ico",
"installMode": "currentUser",
"languages": ["English"],
"displayLanguageSelector": false
}
}
},
"app": {
"windows": [
{
"title": "Waggle",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": true
}
],
"security": {
"csp": "default-src 'self'; connect-src 'self' http://localhost:* http://127.0.0.1:* ws://localhost:* ws://127.0.0.1:* https://us.i.posthog.com; style-src 'self' 'unsafe-inline'; script-src 'self'; img-src 'self' data:"
},
"trayIcon": {
"iconPath": "icons/icon.png",
"tooltip": "Waggle - AI Agent Swarm"
}
},
"plugins": {
"shell": {
"open": true
}
}
}