mitgliederverwaltung/Justfile
Rafael Epplée 07fd2df09b
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
Set up basic CI
2025-04-21 13:48:21 +02:00

15 lines
No EOL
252 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:
mix compile --warnings-as-errors
mix format --check-formatted