2023-03-14 20:20:48 +00:00
|
|
|
# Do not edit this file. It is automatically generated by 'build-configs'.
|
|
|
|
|
2023-02-21 08:18:55 +00:00
|
|
|
default:
|
|
|
|
@just --list
|
|
|
|
|
|
|
|
composer *args:
|
|
|
|
just _exec php composer {{ args }}
|
|
|
|
|
2023-04-12 21:22:51 +00:00
|
|
|
alias phpunit := test
|
|
|
|
|
|
|
|
test *args:
|
2023-04-12 21:40:14 +00:00
|
|
|
just _run php phpunit {{ args }}
|
2023-04-12 21:22:51 +00:00
|
|
|
|
2023-02-21 08:18:55 +00:00
|
|
|
drush *args:
|
|
|
|
just _exec php drush {{ args }}
|
|
|
|
|
2023-03-14 20:20:48 +00:00
|
|
|
install *args:
|
|
|
|
just _exec php drush site:install -y {{ args }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-02-21 08:18:55 +00:00
|
|
|
_exec +args:
|
|
|
|
docker compose exec {{ args }}
|
2023-04-12 21:22:51 +00:00
|
|
|
|
2023-04-12 21:40:14 +00:00
|
|
|
_run service command *args:
|
2023-04-12 21:46:30 +00:00
|
|
|
docker compose run \
|
|
|
|
--entrypoint {{ command }} \
|
|
|
|
--no-deps \
|
|
|
|
--rm \
|
|
|
|
--tty \
|
|
|
|
{{ service }} {{ args }}
|