build: update configuration files
This commit is contained in:
parent
6d6bf27d6f
commit
e885ed948a
10 changed files with 33 additions and 13 deletions
16
justfile
16
justfile
|
|
@ -1,19 +1,19 @@
|
|||
# Do not edit this file. It is automatically generated by 'build-configs'.
|
||||
|
||||
default:
|
||||
@just --list
|
||||
|
||||
composer *args:
|
||||
just _exec php composer {{ args }}
|
||||
|
||||
phpunit *args:
|
||||
just _run --rm php phpunit {{ args }}
|
||||
|
||||
alias test := phpunit
|
||||
|
||||
drush *args:
|
||||
just _exec php drush {{ args }}
|
||||
|
||||
install *args:
|
||||
just _exec php drush site:install -y {{ args }}
|
||||
|
||||
|
||||
|
||||
|
||||
_exec +args:
|
||||
docker compose exec {{ args }}
|
||||
|
||||
_run +args:
|
||||
docker compose run {{ args }}
|
||||
|
|
|
|||
Reference in a new issue