build: add justfile

This commit is contained in:
Oliver Davies 2023-02-21 08:18:55 +00:00
parent 3784535b07
commit a4ac338cfb
2 changed files with 11 additions and 29 deletions

11
justfile Normal file
View file

@ -0,0 +1,11 @@
default:
@just --list
composer *args:
just _exec php composer {{ args }}
drush *args:
just _exec php drush {{ args }}
_exec +args:
docker compose exec {{ args }}