Initialization.

This commit is contained in:
JOLIMAITRE Matthieu 2025-05-26 22:15:11 +02:00
commit 4094afff3d
13 changed files with 517 additions and 0 deletions

21
asset/config_schema.json Normal file
View file

@ -0,0 +1,21 @@
{
"type": "object",
"properties": {
"file_path": {
"type": "string"
},
"repo_path": {
"type": "string"
},
"remote_url": {
"type": "string"
}
},
"required": [
"file_path",
"repo_path",
"remote_url"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}