-
Notifications
You must be signed in to change notification settings - Fork 1
Exposed files
JLangisch edited this page Dec 23, 2025
·
1 revision
The optional files array allows declaring configuration files that SSUI could expose for editing in the future.
"files": [
{
"filename": "serverconfig.xml",
"filepath": "./config/serverconfig.xml",
"type": "xml",
"description": "Main server configuration file"
}
]| Field | Required | Valid Values |
|---|---|---|
filename |
Yes | Display name |
filepath |
Yes | Relative path from server root |
type |
Yes |
"json", "ini", "xml", "yaml", "text"
|
description |
Yes | Purpose of the file |
Note
Current SSUI versions do not yet have a built-in editor for these files, but declaring them prepares for future support and helps validation.
Warning
Invalid type or missing fields will prevent runfile loading.