mirror of
https://github.com/AIR-EISTI/hades.git
synced 2025-01-10 03:21:30 +01:00
23 lines
653 B
JSON
23 lines
653 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Hades config",
|
|
"description": "Hades configuration file",
|
|
"type": "object",
|
|
"properties": {
|
|
"hadesServerPort": {
|
|
"type": "number",
|
|
"description": "The port Hades API will listen on.",
|
|
"minimum": 1,
|
|
"maximum": 65535
|
|
},
|
|
"hadesServerHost": {
|
|
"type": "string",
|
|
"description": "The host Hades API will listen on."
|
|
},
|
|
"configDir": {
|
|
"type": "string",
|
|
"description": "The directory in which will be stored the game configuration files."
|
|
}
|
|
},
|
|
"required": ["hadesServerPort", "hadesServerHost", "configDir"]
|
|
}
|