feat: add parameter format and common parameters to backend configuration

This commit is contained in:
yxf
2026-05-26 14:30:19 +08:00
committed by yxf0314
parent 95e03d11c1
commit 91c3d0b814
15 changed files with 148 additions and 4 deletions
@@ -26,6 +26,18 @@
},
"description": "default backend parameter"
},
"parameter_format": {
"type": ["string", "null"],
"enum": ["space", "equal", null],
"description": "parameter output format: 'space' -> --key value, 'equal' -> --key=value"
},
"common_parameters": {
"type": "array",
"items": {
"type": "string"
},
"description": "commonly used parameters shown as hints in deployment UI"
},
"default_run_command": {
"type": ["string", "null"],
"description": "default start command"