Create basic config file structure

This commit is contained in:
2026-01-16 13:32:33 +09:00
parent 6ca2e8b2f8
commit bc077376cc
5 changed files with 279 additions and 21 deletions

29
example-config.json Normal file
View File

@@ -0,0 +1,29 @@
{
"source_hosts": {
"pvv-git": {
"type": "gitea",
"host": "git.pvv.ntnu.no",
"token": null
}
},
"sources": {
"oysteikt-repos": {
"type": "user",
"source_host": "pvv-git",
"name": "oysteikt",
"clone": true
},
"drift-repos": {
"type": "organization",
"source_host": "pvv-git",
"name": "drift",
"clone": true
},
"oysteikt-stars": {
"type": "user-stars",
"source_host": "pvv-git",
"name": "oysteikt",
"clone": true
}
}
}