botapp/tauri.conf.json
Rodrigo Rodriguez (Pragmatismo) 64e11506a2 Initial botapp - Tauri wrapper for General Bots
This crate wraps botui (pure web UI) with Tauri for desktop/mobile:
- Native file system access via Tauri commands
- System tray integration (prepared)
- App-specific guides injected at runtime
- Desktop settings and configuration

Architecture:
- botui: Pure web UI (no Tauri deps)
- botapp: Tauri wrapper that loads botui's suite

Files:
- src/desktop/drive.rs: File system commands
- src/desktop/tray.rs: System tray (prepared)
- js/app-extensions.js: Injects app guides into suite
- ui/app-guides/: App-only HTML content
2025-12-04 09:02:10 -03:00

31 lines
616 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "General Bots",
"version": "6.1.0",
"identifier": "br.com.pragmatismo.botapp",
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"devUrl": "http://localhost:3000",
"frontendDist": "../botui/ui/suite"
},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "General Bots",
"width": 1200,
"height": 800,
"resizable": true,
"fullscreen": false
}
]
},
"bundle": {
"active": true,
"targets": "all",
"icon": []
}
}