mitgliederverwaltung/Justfile
Simon c4bd424163
All checks were successful
continuous-integration/drone/push Build is passing
chore: add docker-compose for local postgres container
2025-05-21 17:01:24 +02:00

32 lines
No EOL
460 B
Makefile

run: install-dependencies start-database migrate-database
mix phx.server
install-dependencies:
mix deps.get
migrate-database:
mix ash.setup
reset-database:
mix ash.reset
start-database:
docker compose up -d
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