summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-18 15:31:26 -0600
committermo khan <mo@mokhan.ca>2025-06-18 15:31:26 -0600
commitd78086a5e376fc0d9ee64a1dd8e4113d66dcafd3 (patch)
tree40d749119aee2106e56173ceeddd63fffc6c574b /Makefile
parentb7d47b2a6c00925f6ae9640700fcda0d888b0486 (diff)
feat: create an grpc server
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index bfeeae3..9cc9188 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,16 @@
.PHONY: help
help:
@echo "Available targets:"
- @echo " run - Run the Server"
+ @echo " server - Run the gRPC server"
@echo " test - Run the tests"
.PHONY: clean
clean:
@cargo clean
-.PHONY: run
-run:
- @cargo run
+.PHONY: server
+server:
+ @cargo run --bin helloworld-server
.PHONY: test
test: