-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (32 loc) · 944 Bytes
/
Copy pathMakefile
File metadata and controls
46 lines (32 loc) · 944 Bytes
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
.PHONY: install run run-all run-p1 run-p2 run-p3 run-p4 evals obs-up obs-down seed-github tron tron-test tron-ngrok
install:
pip install -e .
run:
python main.py
run-all:
python main.py --all
run-p1:
python main.py --incident INC-2026-0145
run-p2:
python main.py --incident INC-2026-0142
run-p3:
python main.py --incident INC-2026-0143
run-p4:
python main.py --incident INC-2026-0144
evals:
arcade evals evals/ --details
obs-up:
docker-compose -f observability/docker-compose.yml up -d
obs-down:
docker-compose -f observability/docker-compose.yml down
seed-github:
@echo "Run this from your pixelcorp-backend repo directory:"
@echo " python $(PWD)/seed/seed_github.py"
tron:
uvicorn tron.server:app --port 4242 --reload
tron-test:
pytest tron/tests/ -v
tron-ngrok:
@echo "1. Start Tron: make tron"
@echo "2. Start ngrok: ngrok http 4242"
@echo "3. Paste the ngrok URL into Arcade Dashboard > Contextual Access"