-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
49 lines (37 loc) · 1.12 KB
/
Makefile
File metadata and controls
49 lines (37 loc) · 1.12 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
49
.PHONY: help build up down logs status test verify run fund clean
PROFILE ?= fork
help:
@echo "Quorum AI Testing Commands"
@echo ""
@echo " make build - Build Docker image"
@echo " make up - Build and start services (default: fork mode)"
@echo " make down - Stop services"
@echo " make logs - Show live logs"
@echo " make status - Show service status"
@echo " make test - Run health check"
@echo " make verify - Verify attestation count"
@echo " make run - Run agent (existing endpoint)"
@echo " make fund - Fund Safe contract with ETH"
@echo " make clean - Stop and remove all data"
@echo ""
@echo "Set PROFILE=mock|fork|testnet to change mode"
build:
./scripts/quorum $(PROFILE) build
up:
./scripts/quorum $(PROFILE) up
down:
./scripts/quorum $(PROFILE) down
logs:
./scripts/quorum $(PROFILE) logs
status:
./scripts/quorum $(PROFILE) status
test:
./scripts/quorum $(PROFILE) test
verify:
./scripts/quorum $(PROFILE) verify
run:
./scripts/quorum $(PROFILE) run
fund:
./scripts/quorum $(PROFILE) fund
clean: down
rm -rf logs/* store/* .anvil.pid