AI-Studio/runtime/tauri.conf.json

87 lines
1.9 KiB
JSON
Raw Normal View History

2024-03-28 21:26:48 +00:00
{
"build": {
"devPath": "http://localhost:5000",
2024-05-12 12:33:01 +00:00
"distDir": "ui/",
2024-03-28 21:26:48 +00:00
"withGlobalTauri": true
},
"package": {
"productName": "MindWork AI Studio",
2024-07-26 06:56:26 +00:00
"version": "0.8.4"
2024-03-28 21:26:48 +00:00
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"sidecar": true,
2024-03-28 21:26:48 +00:00
"all": false,
"open": true,
"scope": [
{
2024-06-23 17:33:21 +00:00
"name": "../app/MindWork AI Studio/bin/dist/mindworkAIStudioServer",
"sidecar": true,
"args": true
}
]
2024-04-05 20:23:01 +00:00
},
"path": {
"all": true
},
"http" : {
"all": true,
"request": true,
"scope": [
"http://localhost"
]
2024-03-28 21:26:48 +00:00
}
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "MindWork AI Studio",
"width": 1920,
"height": 1080
}
],
"security": {
"csp": null,
2024-05-13 16:22:13 +00:00
"dangerousRemoteDomainIpcAccess": [
{
"domain": "localhost",
"windows": ["main"],
"enableTauriAPI": true
}
]
2024-03-28 21:26:48 +00:00
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.github.mindwork-ai.ai-studio",
"externalBin": [
2024-06-23 17:33:21 +00:00
"../app/MindWork AI Studio/bin/dist/mindworkAIStudioServer"
],
"macOS": {
"exceptionDomain": "localhost"
},
2024-03-28 21:26:48 +00:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
2024-05-12 12:33:59 +00:00
},
"updater": {
2024-06-23 17:33:21 +00:00
"active": true,
"endpoints": [
"https://github.com/MindWorkAI/AI-Studio/releases/latest/download/latest.json"
],
2024-06-30 13:26:28 +00:00
"dialog": false,
2024-06-23 17:33:21 +00:00
"windows": {
"installMode": "passive"
},
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDM3MzE4MTM4RTNDMkM0NEQKUldSTnhNTGpPSUV4TjFkczFxRFJOZWgydzFQN1dmaFlKbXhJS1YyR1RKS1RnR09jYUpMaGsrWXYK"
2024-03-28 21:26:48 +00:00
}
}
}