Skip to content

Commit 7e80248

Browse files
committed
simpler commands
1 parent b3493cc commit 7e80248

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@ The repository includes a process-compose-flake setup that provides native, decl
170170
```bash
171171
# Start PostgreSQL + IPFS for unit tests (run manually, or Claude can launch with --detach)
172172
# PostgreSQL: localhost:5432, IPFS: localhost:5001
173-
nix run .#unit-tests
173+
nix run .#unit
174174

175175
# Alternatively, Claude can run services in background:
176-
nix run .#unit-tests -- --detach
176+
nix run .#unit -- --detach
177177

178178
# In another terminal (or same if using --detach), run unit tests
179179
cargo test --workspace --exclude graph-tests
@@ -183,10 +183,10 @@ cargo test --workspace --exclude graph-tests
183183
```bash
184184
# Start all services for integration tests (run manually, or Claude can launch with --detach)
185185
# PostgreSQL: localhost:3011, IPFS: localhost:3001, Anvil: localhost:3021
186-
nix run .#integration-tests
186+
nix run .#integration
187187

188188
# Alternatively, Claude can run services in background:
189-
nix run .#integration-tests -- --detach
189+
nix run .#integration -- --detach
190190

191191
# In another terminal (or same if using --detach), run integration tests
192192
cargo test -p graph-tests --test integration_tests

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
};
8585
in {
8686
# Unit tests configuration
87-
unit-tests = {
87+
unit = {
8888
imports = [
8989
services-flake.processComposeModules.default
9090
ipfs
@@ -110,7 +110,7 @@
110110
};
111111

112112
# Integration tests configuration
113-
integration-tests = {
113+
integration = {
114114
imports = [
115115
services-flake.processComposeModules.default
116116
ipfs

0 commit comments

Comments
 (0)