Skip to content

Commit 8a086b9

Browse files
committed
feat: add syncing of Python dependencies with uv in load-env script
1 parent 7ef9f36 commit 8a086b9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

scripts/load-env.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,14 @@ else
8383
echo "⚠️ pre-commit not available - skipping hook installation"
8484
fi
8585

86+
# Sync python dependencies with uv
87+
if command -v uv &> /dev/null; then
88+
echo "🔧 Syncing Python dependencies..."
89+
(cd "${mydir}/.." && uv sync --dev --all-packages)
90+
else
91+
echo "⚠️ uv not available - skipping dependency sync"
92+
fi
93+
8694
ENCRYPTED_FILE="${mydir}/../.env.integration.enc"
8795
DECRYPTED_FILE="${mydir}/../.env"
8896

0 commit comments

Comments
 (0)