generated from Labyricorn/labyricorn-project-template
CI / frontend-quality (push) Canceled after 0s
- All 'voicebox'/'Voicebox'/'VOICEBOX' strings replaced with 'talkbox'/'TalkBox'/'TALKBOX' - Port changed from 17493 to 17494 (avoids conflict with upstream VoiceBox) - MCP tool namespace: voicebox.* -> talkbox.* - App bundle ID: sh.voicebox.app -> com.talkbox.app - Binary names: voicebox-server -> talkbox-server, voicebox-mcp -> talkbox-mcp - Docker user/group: voicebox -> talkbox - Database: voicebox.db -> talkbox.db - Env vars: VOICEBOX_* -> TALKBOX_* - Asset files renamed: voicebox-logo.* -> talkbox-logo.*, etc. - External binaries in tauri.conf.json updated to talkbox-server/talkbox-mcp
29 lines
706 B
JSON
29 lines
706 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"identifier": "default",
|
|
"description": "Default permissions for talkbox",
|
|
"platforms": ["linux", "macOS", "windows"],
|
|
"windows": ["main", "dictate"],
|
|
"remote": {
|
|
"urls": ["http://localhost:*"]
|
|
},
|
|
"permissions": [
|
|
"core:default",
|
|
"core:window:default",
|
|
"core:window:allow-start-dragging",
|
|
"core:webview:default",
|
|
"core:webview:allow-internal-toggle-devtools",
|
|
"shell:allow-open",
|
|
"shell:allow-execute",
|
|
"shell:allow-spawn",
|
|
"updater:default",
|
|
"process:default",
|
|
"dialog:default",
|
|
"dialog:allow-save",
|
|
"dialog:allow-open",
|
|
"fs:default",
|
|
"fs:read-all",
|
|
"fs:write-all"
|
|
]
|
|
}
|