Merge remote-tracking branch 'origin/main' into feat/queue-based-graph-engine

This commit is contained in:
-LAN-
2025-09-03 01:33:17 +08:00
115 changed files with 5875 additions and 268 deletions

View File

@ -17,5 +17,8 @@ uv run --project api --dev dotenv-linter ./api/.env.example ./web/.env.example
# run import-linter
uv run --directory api --dev lint-imports
# run ty check
dev/ty-check
# run mypy check
dev/mypy-check

10
dev/ty-check Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
set -x
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
cd "$SCRIPT_DIR/.."
# run ty checks
uv run --directory api --dev \
ty check