-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathMakefile
More file actions
77 lines (70 loc) · 1.07 KB
/
Makefile
File metadata and controls
77 lines (70 loc) · 1.07 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.DEFAULT_GOAL := menu
MENU_RUNNER := bun scripts/make-menu.ts
COMMAND_TARGETS := \
install \
dev \
dev-web \
build \
build-web \
typecheck \
check-types \
lint \
check \
fix \
test \
test-watch \
web-dev \
web-dev-prod \
web-build \
web-typecheck \
web-preview \
web-test \
web-test-watch \
web-generate-api-types \
docs-dev \
docs-build \
docs-start \
docs-preview \
docs-typecheck \
docs-lint \
docs-format \
db-pull \
db-local \
db-push \
db-generate \
db-migrate \
db-studio \
db-local-direct \
db-push-direct \
db-generate-direct \
db-migrate-direct \
db-studio-direct \
ui-typecheck \
cargo-build \
cargo-build-release \
cargo-check \
cargo-test \
cargo-clippy \
cargo-fmt \
server-build \
server-run \
agent-build \
agent-run \
server-dev \
server-dev-prod \
agent-dev \
dev-full \
dev-demo \
server-dev-demo \
docker-build \
docker-up \
docker-down \
docker-logs
.PHONY: menu recent help $(COMMAND_TARGETS)
menu:
@$(MENU_RUNNER) menu
recent:
@$(MENU_RUNNER) recent
help: menu
$(COMMAND_TARGETS):
@$(MENU_RUNNER) run $@