mirror of
https://github.com/langgenius/dify.git
synced 2025-11-14 02:12:34 +00:00
11 lines
143 B
Plaintext
11 lines
143 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -x
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
||
|
|
cd "$SCRIPT_DIR/.."
|
||
|
|
|
||
|
|
# run ty checks
|
||
|
|
uv run --directory api --dev \
|
||
|
|
ty check
|