From 1f2f72fba8bd3340d687c6ab51f61c1474307f46 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Mon, 29 May 2023 20:41:12 +0200 Subject: [PATCH] Add a makefile. --- makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..70ca5d2 --- /dev/null +++ b/makefile @@ -0,0 +1,12 @@ +all: build + +build: + shards build + +NAME ?= John +EMAIL ?= john@example.com +PHONE ?= 0707070707 +PASSWORD_FILE ?= /tmp/PASSWORD + +add-user: + ./bin/authc user add $(NAME) $(EMAIL) $(PHONE) -k $(PASSWORD_FILE)