We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef9f36 commit 8a086b9Copy full SHA for 8a086b9
1 file changed
scripts/load-env.sh
@@ -83,6 +83,14 @@ else
83
echo "⚠️ pre-commit not available - skipping hook installation"
84
fi
85
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
+
94
ENCRYPTED_FILE="${mydir}/../.env.integration.enc"
95
DECRYPTED_FILE="${mydir}/../.env"
96
0 commit comments