summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-18 16:34:43 -0600
committermo khan <mo@mokhan.ca>2025-06-18 16:34:43 -0600
commitf7d1396c5634e14a7aafdd5c8f6e644aca6e5fb0 (patch)
tree161c6b656d3366d64109bc85c637a7a7f6f7e679 /Makefile
parent68558decefd9562a5c8ee3ffa9c197b244e65321 (diff)
refactor: remove all the tutorial code
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index cc4f79f..6e70379 100644
--- a/Makefile
+++ b/Makefile
@@ -8,19 +8,10 @@ help:
clean:
@cargo clean
-.PHONY: client
-client:
- @cargo run --bin authzd-client
-
.PHONY: server
server:
- @cargo run --bin authzd-server
+ @cargo run --bin authzd
.PHONY: test
test:
@cargo test
-
-.PHONY: grpcurl
-grpcurl:
- @grpcurl -plaintext -import-path ./proto -proto helloworld.proto -d '{"name": "Tonic"}' '[::1]:50051' helloworld.Greeter/SayHello
- @grpcurl -plaintext -import-path ./proto -proto ability.proto -d '{"subject": "gid://example/User/1", "permission": "gid://example/Permission/1", "resource": "gid://example/Project/1"}' '[::1]:50051' authz.rpc.Ability/Allowed