Add basic justfile

This commit is contained in:
Rafael Epplée 2025-03-18 15:23:05 +01:00
parent f2eeb95960
commit 87e7068e3f
No known key found for this signature in database
GPG key ID: B4EFE6DC59FAE118

8
Justfile Normal file
View file

@ -0,0 +1,8 @@
run: install-dependencies migrate-database
mix phx.server
install-dependencies:
mix deps.get
migrate-database:
mix ecto.create