Skip to content

Exposed files

JLangisch edited this page Dec 23, 2025 · 1 revision

Exposed Config Files (files array)

The optional files array allows declaring configuration files that SSUI could expose for editing in the future.

Structure

"files": [
  {
    "filename": "serverconfig.xml",
    "filepath": "./config/serverconfig.xml",
    "type": "xml",
    "description": "Main server configuration file"
  }
]

Fields

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.

Clone this wiki locally