mitgliederverwaltung/Justfile
Rafael Epplée 1b066695ad
All checks were successful
continuous-integration/drone/push Build is passing
Add just format task
2025-05-14 15:22:41 +02:00

29 lines
No EOL
403 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
format:
mix format