Add the reusable RMS core application (server, web UI, plugins, tests, tools) with generic defaults, GPL licensing, and maintainer context documentation so deployments can consume this repo as software source independent of station-specific overlays.
22 lines
510 B
JSON
22 lines
510 B
JSON
{
|
|
"id": "rms.station.shell",
|
|
"name": "Station Shell Control",
|
|
"version": "1.0.0",
|
|
"apiVersion": "1.0",
|
|
"capabilities": [
|
|
"station.activate",
|
|
"station.deactivate"
|
|
],
|
|
"settingsSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"scriptActivate": { "type": "string" },
|
|
"scriptDeactivate": { "type": "string" },
|
|
"scriptRoot": { "type": "string" },
|
|
"timeoutMs": { "type": "integer", "minimum": 1000 }
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"uiControls": []
|
|
}
|