Files
OpenParty/settings.json

32 lines
976 B
JSON
Raw Normal View History

2024-06-15 19:57:02 +08:00
{
"server": {
"SaveData": {
2024-07-01 16:32:59 +08:00
"windows": "{Home}\\AppData\\Roaming\\openparty\\",
2024-06-15 19:57:02 +08:00
"linux": "{Home}/.openparty/"
},
"port": 80,
"forcePort": false,
"isPublic": true,
"enableSSL": true,
"domain": "justdanceservices.prjktla.online",
2024-07-07 18:25:26 +08:00
"modName": "Just Dance Unlimited Mod",
2024-06-15 19:57:02 +08:00
"serverstatus": {
"isMaintenance": false,
"channel": "prod"
}
2024-07-07 18:44:52 +08:00
},
"modules": [
{
"name": "HelloWorldPlugin",
"description": "A simple example plugin that demonstrates the plugin system",
"path": "{dirname}/plugins/HelloWorldPlugin.js",
2024-07-07 18:44:52 +08:00
"execution": "init"
},
{
"name": "AdminPanelPlugin",
"description": "Secure admin panel for server management and maintenance",
"path": "{dirname}/plugins/AdminPanelPlugin.js",
"execution": "init"
2024-07-07 18:44:52 +08:00
}
]
2024-06-15 19:57:02 +08:00
}