The Agent now owns one local view of machine health and top processes. RedFlag opens at dashboard scale, names itself plainly, and renders that evidence before updates.\n\nCI now compiles the Tauri bridge before release day.
34 lines
747 B
JSON
34 lines
747 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "RedFlag",
|
|
"identifier": "com.redflag.local",
|
|
"build": {
|
|
"beforeDevCommand": "npm --prefix ../web run dev:desktop",
|
|
"devUrl": "http://127.0.0.1:3001/index.desktop.html",
|
|
"beforeBuildCommand": "npm --prefix ../web run build:desktop",
|
|
"frontendDist": "../web/dist-desktop"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "RedFlag",
|
|
"width": 980,
|
|
"height": 760,
|
|
"minWidth": 760,
|
|
"minHeight": 620,
|
|
"resizable": true,
|
|
"visible": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": false,
|
|
"icon": [
|
|
"icons/icon.png"
|
|
]
|
|
}
|
|
}
|