mirror of
https://github.com/langgenius/dify.git
synced 2026-04-20 10:47:21 +08:00
Merge remote-tracking branch 'origin/main' into feat/queue-based-graph-engine
This commit is contained in:
@ -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
10
dev/ty-check
Executable 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
|
||||
Reference in New Issue
Block a user