mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-13 12:55:19 +00:00
* add non github config definitions * refactor github config compilation to seperate file * add gitlab config compilation * Connection management (#183) * wip gitlab repo sync support * fix gitlab zoekt metadata * add gitea support * add gerrit support * Connection management (#183) * add gerrit config compilation * Connection management (#183) --------- Co-authored-by: Brendan Kellam <bshizzle1234@gmail.com>
24 lines
No EOL
451 B
JSON
24 lines
No EOL
451 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "ConnectionConfig",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "./github.json"
|
|
},
|
|
{
|
|
"$ref": "./gitlab.json"
|
|
},
|
|
{
|
|
"$ref": "./gitea.json"
|
|
},
|
|
{
|
|
"$ref": "./gerrit.json"
|
|
},
|
|
{
|
|
"$ref": "./git.json"
|
|
},
|
|
{
|
|
"$ref": "./local.json"
|
|
}
|
|
]
|
|
} |