forked from zeroc00I/DontFeedTheAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
57 lines (39 loc) · 973 Bytes
/
Copy pathMakefile
File metadata and controls
57 lines (39 loc) · 973 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
47
48
49
50
51
52
53
54
55
56
57
# DontFeedTheAI — Makefile
# All logic lives in wizard.py. These are Unix convenience aliases only.
# Windows users: run python3 wizard.py <command> directly.
.PHONY: setup wizard deploy sync connect tunnel audit test improve benchmark \
docker-up docker-down vault-stats vault-clear clean install
setup:
python3 wizard.py setup
wizard:
python3 wizard.py
deploy:
python3 wizard.py deploy
sync:
python3 wizard.py sync
connect:
python3 wizard.py connect
tunnel:
python3 wizard.py tunnel
audit:
python3 wizard.py tunnel --audit
install:
python3 wizard.py install
test:
python3 wizard.py test
test-integration:
python3 wizard.py test --integration
improve:
python3 wizard.py improve --cycles 3
benchmark:
python3 wizard.py benchmark
docker-up:
python3 wizard.py docker up
docker-down:
python3 wizard.py docker down
vault-stats:
python3 wizard.py vault stats
vault-clear:
python3 wizard.py vault clear
clean:
python3 wizard.py clean