Skip to content

Commit

Permalink
add comment to setup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter committed Aug 15, 2024
1 parent 3c7df32 commit e0b3735
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
# Safer bash scripts
set -euxo pipefail

# Install Node.js dependencies
npm install -g [email protected]

# Install Python dependencies
pip install --upgrade pip
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt -r requirements-dev.txt

# Install git hooks
git config --global --add safe.directory "$PWD"
pre-commit install-hooks
pre-commit install --install-hooks

0 comments on commit e0b3735

Please sign in to comment.