- add the imported server task addon to the current framework with task ownership, task catalog, mission-manager attack generation, org-owned reward routing, participant notifications, and reputation syncing - restructure org persistence so core org data, assets, fleet, and members are handled through the current Redis/extension model with matching Rust repository and service updates - wire the client CAD addon into the framework, actor device action, shared web UI bridge pattern, and task listing/acceptance flow - add a source-driven CAD web UI layout with ui.config.mjs and extend the shared web UI builder to support custom HTML template pages for multi-surface UIs
70 lines
1.8 KiB
JavaScript
70 lines
1.8 KiB
JavaScript
export default {
|
|
addonName: "cad",
|
|
title: "FORGE CAD",
|
|
logLabel: "CAD UI",
|
|
outputDir: "_site",
|
|
generateIndex: false,
|
|
jsBundles: [
|
|
{
|
|
name: "CAD shared bridge/runtime",
|
|
output: "cad-shared.js",
|
|
sources: ["src/shared.js"],
|
|
},
|
|
{
|
|
name: "CAD topbar app",
|
|
output: "cad-topbar.js",
|
|
sources: ["src/topbar.js"],
|
|
},
|
|
{
|
|
name: "CAD sidepanel app",
|
|
output: "cad-sidepanel.js",
|
|
sources: ["src/sidepanel.js"],
|
|
},
|
|
{
|
|
name: "CAD bottombar app",
|
|
output: "cad-bottombar.js",
|
|
sources: ["src/bottombar.js"],
|
|
},
|
|
],
|
|
cssBundles: [
|
|
{
|
|
name: "CAD common styles",
|
|
output: "cad-common.css",
|
|
sources: ["src/styles/common.css"],
|
|
},
|
|
{
|
|
name: "CAD topbar styles",
|
|
output: "cad-topbar.css",
|
|
sources: ["src/styles/topbar.css"],
|
|
},
|
|
{
|
|
name: "CAD sidepanel styles",
|
|
output: "cad-sidepanel.css",
|
|
sources: ["src/styles/sidepanel.css"],
|
|
},
|
|
{
|
|
name: "CAD bottombar styles",
|
|
output: "cad-bottombar.css",
|
|
sources: ["src/styles/bottombar.css"],
|
|
},
|
|
],
|
|
htmlTemplates: [
|
|
{
|
|
name: "CAD topbar page",
|
|
output: "topbar.html",
|
|
source: "src/topbar.html",
|
|
},
|
|
{
|
|
name: "CAD sidepanel page",
|
|
output: "sidepanel.html",
|
|
source: "src/sidepanel.html",
|
|
},
|
|
{
|
|
name: "CAD bottombar page",
|
|
output: "bottombar.html",
|
|
source: "src/bottombar.html",
|
|
},
|
|
],
|
|
site: {},
|
|
};
|