inisital commit

This commit is contained in:
2022-11-21 15:40:16 +01:00
commit a9e3c19fb9
41 changed files with 2338 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
jsonschema:
rm -rf docs/config
mkdir -p tmp docs/config
cat src/assets/config.schema.yaml | python3 -c 'import yaml; import json; import sys; print(json.dumps(yaml.safe_load(sys.stdin)));' > tmp/glyphance.schema.json
pnpm dlx @adobe/jsonschema2md --input tmp --out docs/config
rm -r out
rm -r tmp