diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-18 15:31:26 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-18 15:31:26 -0600 |
| commit | d78086a5e376fc0d9ee64a1dd8e4113d66dcafd3 (patch) | |
| tree | 40d749119aee2106e56173ceeddd63fffc6c574b /Makefile | |
| parent | b7d47b2a6c00925f6ae9640700fcda0d888b0486 (diff) | |
feat: create an grpc server
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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: |
