First Commit

This commit is contained in:
Benjamin Toby
2023-10-29 08:35:26 +01:00
commit 05f380f691
9 changed files with 381 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"start": {
"type": "string"
},
"preflight": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"redeploy_path": {
"type": "string"
}
},
"required": ["start", "preflight"]
}