Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -228,3 +228,7 @@ local_settings.py
.dockerignore
Dockerfile
CLAUDE.md

# Node.js (Husky git hooks)
node_modules/
package-lock.json
9 changes: 9 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,17 @@ uv sync

# Install pre-commit hooks (one-time)
pre-commit install

# Install Husky git hooks (manages git hooks layer on top of pre-commit)
bash scripts/setup-husky.sh
```

> **Note:** Husky is used as an additional git hooks manager that delegates to the
> `pre-commit` framework. The `scripts/setup-husky.sh` script installs the npm
> dependencies, makes the hook files executable, and configures git to use the
> `.husky/` directory for hooks. Both systems work together: Husky manages the git
> hook entry points, and `pre-commit` performs the actual checks.

That's it! You're ready to develop.

### Daily Development Workflow
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ dev = [
"pytest>=8.4.1",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"pytest-xdist>=3.5.0",
"ruff>=0.12.0",
"websockets>=14.1",
"wheel>=0.45.1",
Expand Down
Loading
Loading