5 changed files with 61 additions and 4 deletions
@ -0,0 +1,53 @@ |
|||||
|
{ |
||||
|
"$schema": "http://json-schema.org/schema#", |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"$schema": { |
||||
|
"type": "string" |
||||
|
}, |
||||
|
"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" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue