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.
25 lines
670 B
JSON
25 lines
670 B
JSON
{
|
|
"id": "rms.openwebrx.guard",
|
|
"name": "OpenWebRX Guard",
|
|
"version": "1.0.0",
|
|
"apiVersion": "1.0",
|
|
"capabilities": [
|
|
"openwebrx.access.issue",
|
|
"openwebrx.access.verify",
|
|
"openwebrx.service.control"
|
|
],
|
|
"settingsSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"ticketTtlSec": { "type": "integer", "minimum": 10, "maximum": 3600 },
|
|
"upstreamPath": { "type": "string" },
|
|
"ensureSdrCommand": { "type": "string" },
|
|
"startCommand": { "type": "string" },
|
|
"stopCommand": { "type": "string" },
|
|
"timeoutMs": { "type": "integer", "minimum": 1000 }
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"uiControls": []
|
|
}
|