There was an error while loading. Please reload this page.
Justfile
1 parent be28964 commit db9338eCopy full SHA for db9338e
1 file changed
Justfile
@@ -1,7 +1,5 @@
1
-default: all
2
-
3
# Build all components (Rust, JS, Go)
4
-all: rust js go
+build: rust js go
5
6
# Build Rust components
7
rust:
@@ -19,6 +17,16 @@ js:
19
17
go:
20
18
./scripts/build-components-go.sh
21
22
-# List available tasks
23
-help:
24
- just --list
+serve:
+ obelisk server run --config ./obelisk-local.toml
+
+test-unit:
+ ./scripts/test-unit.sh
25
+test-integration:
26
+ ./scripts/test-integration.sh
27
+test-e2e: rust
28
+ ./scripts/test-e2e.sh ./obelisk-local.toml truncate
29
+test-e2e-js: js
30
+ ./scripts/test-e2e.sh ./obelisk-local-js-all.toml truncate
31
+test-e2e-go: go
32
+ ./scripts/test-e2e.sh ./obelisk-local-go-all.toml truncate
0 commit comments