Skip to content

Commit df2eba6

Browse files
committed
Add setup script for easy contibutor onboarding
1 parent cb917eb commit df2eba6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/setup.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
3+
if ! command -v uv &>/dev/null; then
4+
echo "Can't find uv, please install uv or ensure it's available in your PATH before attempting setup."
5+
exit 1
6+
fi
7+
8+
uv sync --dev

0 commit comments

Comments
 (0)