This commit is contained in:
Melvin Strobl
2026-02-03 21:43:09 +01:00
parent 2304b5388e
commit 2cd8e8f634
21 changed files with 4960 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
#! /usr/bin/env bash
set -e
set -x
cd backend
uv run python -c "import app.main; import json; print(json.dumps(app.main.app.openapi()))" > ../openapi.json
cd ..
mv openapi.json frontend/
bun run --filter frontend generate-client
bun run lint