-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (25 loc) · 677 Bytes
/
Makefile
File metadata and controls
31 lines (25 loc) · 677 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
.PHONY: build-desktop-app
build-desktop-app:
cd ./desktop/electron && make build
cd ./ui && make test
cd ./server && make test
.PHONY: build
build:
cd ./proto && make build
cd ./ui && make build
cd ./server && make build
cd ./server && make test
.PHONY: build-docker-images
build-docker-images:
cd ./docker/dekaf && make build
cd ./docker/demoapp && make build
.PHONY: create-multiarch-docker-manifest
create-multiarch-docker-manifest:
cd ./docker/dekaf && make create-multiarch-docker-manifest
cd ./docker/demoapp && make create-multiarch-docker-manifest
.PHONY: publish-helm-chart
publish-helm-chart:
cd ./helm && make publish
.PHONY: dev
dev:
nix develop