Add a makefile.

master
Philippe Pittoli 2023-05-29 20:41:12 +02:00
parent d9e0e6b09b
commit 1f2f72fba8
1 changed files with 12 additions and 0 deletions

12
makefile Normal file
View File

@ -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)