-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathjustfile
More file actions
48 lines (37 loc) · 1 KB
/
justfile
File metadata and controls
48 lines (37 loc) · 1 KB
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
# 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
# Add a sponsored conference and regenerate the activity map
# Usage: just add-conference --title "PyCon Brazil" --year 2026 --continent "South America" --country "Brazil"
add-conference *ARGS:
uv run python scripts/add_conference.py {{ARGS}}
# Run full development workflow
dev: sync lint test build
@echo "✓ Development workflow complete"