Commit 231fac9
Add justfile for common development tasks
This commit adds a justfile that provides convenient shortcuts for common
development tasks in the Black Python Devs website repository.
The justfile includes commands for:
- install: Install dependencies using uv sync
- serve: Run the render-engine development server
- build: Build the static site
- test: Run pytest tests (with verbose and coverage variants)
- lint: Run ruff checks and format validation
- format: Format code using ruff
- pre-commit-run: Execute pre-commit hooks
- clean: Remove build artifacts and cache directories
- dev: Full development workflow (install, lint, test, build)
All commands properly use uv run to execute tools within the project's
virtual environment. This improves developer experience by providing
a consistent, discoverable interface for common tasks.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent e9cfd25 commit 231fac9
1 file changed
+54
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
0 commit comments