-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
69 lines (51 loc) · 1.13 KB
/
Makefile
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
.PHONY: \
build-graphql-api \
build-export-api \
build-app \
run-app \
run-graphql-api \
run-export-api \
watch-app \
docker-dev \
docker-dev-build \
docker-dev-run \
docker-dev-db \
build \
test \
clippy \
format \
check-format \
check \
check-all \
all: build-graphql-api build-export-api build-app
check-all: test check clippy check-format
run-app: build-app
RUST_BACKTRACE=1 cargo run start app
run-graphql-api: build-graphql-api
RUST_BACKTRACE=1 cargo run init
run-export-api: build-export-api
RUST_BACKTRACE=1 cargo run start export-api
watch-app:
trunk serve thoth-app/index.html
docker-dev: docker-dev-build docker-dev-run
docker-dev-build:
docker compose -f docker-compose.dev.yml build
docker-dev-run:
docker compose -f docker-compose.dev.yml up
docker-dev-db:
docker compose -f docker-compose.dev.yml up db
build:
cargo build -vv
build-graphql-api: build
build-export-api: build
build-app: build
test:
cargo test --workspace
clippy:
cargo clippy --all --all-targets --all-features -- -D warnings
format:
cargo fmt --all --
check-format:
cargo fmt --all -- --check
check:
cargo check --workspace