summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-18 14:58:42 -0600
committermo khan <mo@mokhan.ca>2025-06-18 14:58:42 -0600
commitb7d47b2a6c00925f6ae9640700fcda0d888b0486 (patch)
tree014f5324a2eff6f663dd94387f25a793e44abe8b
parent729ba20b58180358df14de140007d088ff9329a8 (diff)
chore: create a makefile
-rw-r--r--Cargo.lock7
-rw-r--r--Makefile18
2 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..d9da949
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "authzd"
+version = "0.1.0"
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bfeeae3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+.PHONY: help
+help:
+ @echo "Available targets:"
+ @echo " run - Run the Server"
+ @echo " test - Run the tests"
+
+.PHONY: clean
+clean:
+ @cargo clean
+
+.PHONY: run
+run:
+ @cargo run
+
+.PHONY: test
+test:
+ @cargo test
+