mirror of
https://github.com/mitchell/shortnr.git
synced 2025-12-18 22:07:21 +00:00
Project architecture boilerplate
This commit is contained in:
commit
7ff70d452a
12 changed files with 261 additions and 0 deletions
19
Makefile
Normal file
19
Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue