mirror of
https://github.com/langgenius/dify.git
synced 2025-08-31 21:03:27 +00:00
11 lines
192 B
Plaintext
11 lines
192 B
Plaintext
![]() |
#!/bin/bash
|
||
|
|
||
|
# rely on `uv` in path
|
||
|
if ! command -v uv &> /dev/null; then
|
||
|
echo "Installing uv ..."
|
||
|
pip install uv
|
||
|
fi
|
||
|
|
||
|
# check uv.lock in sync with pyproject.toml
|
||
|
uv lock --project api
|