@@ -5,27 +5,27 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
55## Common Development Commands
66
77### Building
8- - ** Release build** : ` make build`
9- - ** Debug build** : ` make build-dev`
10- - ** Build all workspace members** : ` make build-all`
8+ - ** Release build** : ` just build`
9+ - ** Debug build** : ` just build-dev`
10+ - ** Build all workspace members** : ` just build-all`
1111
1212### Testing
13- - ** Run all tests** : ` make test`
14- - ** Run tests with output** : ` make test-verbose`
15- - ** Unit tests only** : ` make test-unit`
16- - ** Integration tests** : ` make test-integration`
17- - ** Test specific crate** : ` make test-node` , ` make test-evolve` , ` make test-common`
13+ - ** Run all tests** : ` just test`
14+ - ** Run tests with output** : ` just test-verbose`
15+ - ** Unit tests only** : ` just test-unit`
16+ - ** Integration tests** : ` just test-integration`
17+ - ** Test specific crate** : ` just test-node` , ` just test-evolve` , ` just test-common`
1818
1919### Code Quality
20- - ** Format code** : ` make fmt`
21- - ** Check formatting** : ` make fmt-check`
22- - ** Run linter** : ` make lint`
23- - ** Run all checks** : ` make check-all`
20+ - ** Format code** : ` just fmt`
21+ - ** Check formatting** : ` just fmt-check`
22+ - ** Run linter** : ` just lint`
23+ - ** Run all checks** : ` just check-all`
2424
2525### Running the Node
26- - ** Run with defaults** : ` make run`
27- - ** Run with debug logs** : ` make run-dev`
28- - ** Direct execution** : ` ./target/release/lumen node --chain <CHAIN_SPEC> --datadir <DATA_DIR> --http --ws `
26+ - ** Run with defaults** : ` just run`
27+ - ** Run with debug logs** : ` just run-dev`
28+ - ** Direct execution** : ` ./target/release/ev-reth node --chain <CHAIN_SPEC> --datadir <DATA_DIR> --http --ws `
2929
3030## High-Level Architecture
3131
0 commit comments