Add a makefile.
This commit is contained in:
parent
d9e0e6b09b
commit
1f2f72fba8
1 changed files with 12 additions and 0 deletions
12
makefile
Normal file
12
makefile
Normal 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)
|
Loading…
Add table
Reference in a new issue