mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 11:42:06 +00:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"exampleProperty": {
|
|
"type": "string"
|
|
},
|
|
"startggClientId": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Client ID de tu OAuth app de start.gg"
|
|
},
|
|
"startggClientSecret": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Client Secret de tu OAuth app de start.gg"
|
|
},
|
|
"startggOAuthPort": {
|
|
"type": "integer",
|
|
"default": 34920,
|
|
"minimum": 1,
|
|
"maximum": 65535,
|
|
"description": "Puerto local para callback OAuth"
|
|
},
|
|
"challongeClientId": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Client ID de tu OAuth app de Challonge"
|
|
},
|
|
"challongeClientSecret": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Client Secret de tu OAuth app de Challonge"
|
|
},
|
|
"challongeOAuthPort": {
|
|
"type": "integer",
|
|
"default": 34921,
|
|
"minimum": 1,
|
|
"maximum": 65535,
|
|
"description": "Puerto local para callback OAuth de Challonge"
|
|
}
|
|
},
|
|
"required": [
|
|
"exampleProperty"
|
|
]
|
|
}
|