mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 21:11:36 +00:00
* feat(linux): add Tauri desktop companion app and openclaw dashboard --json * test(dashboard): assemble fake token fixture to satisfy secret scanners * test(dashboard): avoid secret-scanner-shaped mock factory line * fix(linux): actionable error when installed CLI predates dashboard --json * docs: regenerate docs map for linux platform heading change
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "OpenClaw",
|
|
"version": "0.1.0",
|
|
"identifier": "ai.openclaw.linux",
|
|
"build": {
|
|
"frontendDist": "../ui"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "OpenClaw",
|
|
"url": "index.html",
|
|
"width": 1080,
|
|
"height": 720,
|
|
"minWidth": 720,
|
|
"minHeight": 520,
|
|
"center": true,
|
|
"visible": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; script-src 'self'; style-src 'self'; img-src 'self' data:; connect-src ipc: http://ipc.localhost",
|
|
"capabilities": [
|
|
{
|
|
"identifier": "local-companion",
|
|
"description": "Local setup screens can invoke app commands and receive installer progress.",
|
|
"local": true,
|
|
"windows": ["main"],
|
|
"permissions": ["core:event:allow-listen", "core:event:allow-unlisten"]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"category": "Utility",
|
|
"shortDescription": "OpenClaw Linux companion",
|
|
"longDescription": "Installs OpenClaw, manages the local Gateway service, and hosts the Control UI.",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.png"
|
|
],
|
|
"resources": {
|
|
"../../../scripts/install-cli.sh": "install-cli.sh"
|
|
}
|
|
}
|
|
}
|