26 lines
No EOL
379 B
Makefile
26 lines
No EOL
379 B
Makefile
run: install-dependencies migrate-database
|
|
mix phx.server
|
|
|
|
install-dependencies:
|
|
mix deps.get
|
|
|
|
migrate-database:
|
|
mix ash.setup
|
|
|
|
reset-database:
|
|
mix ash.reset
|
|
|
|
ci-dev: lint audit test
|
|
|
|
lint:
|
|
mix format --check-formatted
|
|
mix compile --warnings-as-errors
|
|
mix credo
|
|
|
|
audit:
|
|
mix sobelow --config
|
|
mix deps.audit
|
|
mix hex.audit
|
|
|
|
test:
|
|
mix test
|