shortnr/Makefile

21 lines
249 B
Makefile
Raw Normal View History

.PHONY: all build clean install lint start test
2019-12-08 02:34:58 +00:00
build: install lint test clean
2019-12-08 02:34:58 +00:00
docker build -t shortnr:latest .
clean:
mix clean
2019-12-08 02:34:58 +00:00
install:
mix deps.get
lint:
mix dialyzer
mix credo --strict
2019-12-08 02:34:58 +00:00
start:
iex -S mix run --no-halt
test:
mix test