authd/makefile

13 lines
203 B
Makefile
Raw Normal View History

2023-05-29 20:41:12 +02:00
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)