Project architecture boilerplate

This commit is contained in:
mitchell 2019-12-07 21:34:58 -05:00
commit 7ff70d452a
12 changed files with 261 additions and 0 deletions

19
Makefile Normal file
View file

@ -0,0 +1,19 @@
.PHONY: all build clean install start test
build: install test clean
docker build -t shortnr:latest .
clean:
mix clean --deps
install:
mix deps.get
install-prod:
mix deps.get --only prod
start:
iex -S mix run --no-halt
test:
mix test