Skip to content

Commit 2647c07

Browse files
committed
docs(AGENTS): Update make commands to just
why: Project now uses justfile instead of Makefile what: - Replace make test/start/ruff/mypy with just equivalents - Update docs commands from make to just
1 parent a8191b7 commit 2647c07

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

AGENTS.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ uv pip install --editable . -G dev
4747

4848
```bash
4949
# Run all tests
50-
make test
50+
just test
5151
# or directly with pytest
5252
uv run pytest
5353

@@ -58,7 +58,7 @@ uv run pytest tests/sync/test_git.py
5858
uv run pytest tests/sync/test_git.py::test_remotes
5959

6060
# Run tests with test watcher
61-
make start
61+
just start
6262
# or
6363
uv run ptw .
6464
```
@@ -67,26 +67,26 @@ uv run ptw .
6767

6868
```bash
6969
# Run ruff for linting
70-
make ruff
70+
just ruff
7171
# or directly
7272
uv run ruff check .
7373

7474
# Format code with ruff
75-
make ruff_format
75+
just ruff-format
7676
# or directly
7777
uv run ruff format .
7878

7979
# Run ruff linting with auto-fixes
8080
uv run ruff check . --fix --show-fixes
8181

8282
# Run mypy for type checking
83-
make mypy
83+
just mypy
8484
# or directly
8585
uv run mypy src tests
8686

8787
# Watch mode for linting (using entr)
88-
make watch_ruff
89-
make watch_mypy
88+
just watch-ruff
89+
just watch-mypy
9090
```
9191

9292
### Development Workflow
@@ -103,13 +103,13 @@ Follow this workflow for code changes:
103103

104104
```bash
105105
# Build documentation
106-
make build_docs
106+
just build-docs
107107

108108
# Start documentation server with auto-reload
109-
make start_docs
109+
just start-docs
110110

111111
# Update documentation CSS/JS
112-
make design_docs
112+
just design-docs
113113
```
114114

115115
## Code Architecture

0 commit comments

Comments
 (0)