build: update configuration files
This commit is contained in:
parent
9423cc2462
commit
39033efd30
1 changed files with 8 additions and 0 deletions
8
justfile
8
justfile
|
@ -6,6 +6,11 @@ default:
|
|||
composer *args:
|
||||
just _exec php composer {{ args }}
|
||||
|
||||
alias phpunit := test
|
||||
|
||||
test *args:
|
||||
just _run phpunit {{ args }}
|
||||
|
||||
drush *args:
|
||||
just _exec php drush {{ args }}
|
||||
|
||||
|
@ -17,3 +22,6 @@ install *args:
|
|||
|
||||
_exec +args:
|
||||
docker compose exec {{ args }}
|
||||
|
||||
_run command *args:
|
||||
docker compose run --rm --no-deps --entrypoint {{ command }} --tty php {{ args }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue