-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathjustfile
More file actions
43 lines (33 loc) · 777 Bytes
/
justfile
File metadata and controls
43 lines (33 loc) · 777 Bytes
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
# Black Python Devs Website - Just recipes
# Run tasks with: just <task-name>
# Display all available commands
help:
@just --list
# Install dependencies
sync:
uv sync --all-extras
# Run development server
serve:
uv run render-engine serve
# Build static site
build:
uv run --no-dev --prerelease=allow render-engine build
# Run linters
lint:
uv run ruff check .
uv run ruff format --check .
# Install hooks
install-hooks:
uv run pre-commit install
# Run pre-commit hooks
pre-commit:
uv run pre-commit run --all-files
# Run tests
test:
uv run --dev pytest
# Run tests with verbose output
test-verbose:
uv run --dev pytest -v
# Run full development workflow
dev: sync lint test build
@echo "✓ Development workflow complete"