build-configs(update)
This commit is contained in:
parent
a5a1f298cc
commit
02240796b4
1 changed files with 4 additions and 1 deletions
5
justfile
5
justfile
|
|
@ -20,6 +20,9 @@ alias phpunit := test
|
||||||
test *args:
|
test *args:
|
||||||
just _exec php phpunit --colors=always {{ args }}
|
just _exec php phpunit --colors=always {{ args }}
|
||||||
|
|
||||||
|
test-watch *args:
|
||||||
|
nodemon --ext "*" --watch "." --exec "just test || exit 1" --ignore */sites/simpletest
|
||||||
|
|
||||||
drush *args:
|
drush *args:
|
||||||
just _exec php drush {{ args }}
|
just _exec php drush {{ args }}
|
||||||
|
|
||||||
|
|
@ -31,7 +34,7 @@ install *args:
|
||||||
|
|
||||||
|
|
||||||
_exec +args:
|
_exec +args:
|
||||||
docker compose exec {{ args }}
|
docker compose exec -T {{ args }}
|
||||||
|
|
||||||
_run service command *args:
|
_run service command *args:
|
||||||
docker compose run \
|
docker compose run \
|
||||||
|
|
|
||||||
Reference in a new issue