You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
50 lines
1.4 KiB
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"Handlers": {
|
|
"type": "object",
|
|
"properties": {
|
|
"BaseURL": {
|
|
"type": "string"
|
|
},
|
|
"EnableGinDebugMode": {
|
|
"type": "boolean"
|
|
},
|
|
"ListenAddr": {
|
|
"type": "string"
|
|
},
|
|
"OAuth": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Google": {
|
|
"type": "object",
|
|
"properties": {
|
|
"ClientID": {
|
|
"type": "string"
|
|
},
|
|
"ClientSecret": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"Secret": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"Store": {
|
|
"type": "object",
|
|
"properties": {
|
|
"DBPath": {
|
|
"type": "string"
|
|
},
|
|
"ShortedIDLength": {
|
|
"type": "integer"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|