mirror of
https://github.com/mitchell/shortnr.git
synced 2025-06-19 13:55:34 +00:00
21 lines
249 B
Makefile
21 lines
249 B
Makefile
.PHONY: all build clean install lint start test
|
|
|
|
build: install lint test clean
|
|
docker build -t shortnr:latest .
|
|
|
|
clean:
|
|
mix clean
|
|
|
|
install:
|
|
mix deps.get
|
|
|
|
lint:
|
|
mix dialyzer
|
|
mix credo --strict
|
|
|
|
start:
|
|
iex -S mix run --no-halt
|
|
|
|
test:
|
|
mix test
|