feat: add Drupal LocalGov example
This commit is contained in:
commit
17c5703d29
19 changed files with 1800 additions and 0 deletions
19
justfile
Normal file
19
justfile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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 }}
|
||||
|
||||
_exec +args:
|
||||
docker compose exec {{ args }}
|
||||
|
||||
_run +args:
|
||||
docker compose run {{ args }}
|
||||
Reference in a new issue