mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-05 20:44:19 +01:00
This commit switches translations from YAML to XLIFF format for better standardization, updates the elimination preparation process with UI and functionality improvements, tweaks form structures, adjusts compose.override.yaml for improved asset handling, and optimizes back office usability with refined translation handling.
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
up:
|
|
docker compose up -d
|
|
|
|
down *args:
|
|
docker compose down {{ args }} --remove-orphans
|
|
|
|
stop:
|
|
docker compose stop
|
|
|
|
exec *args:
|
|
docker compose exec php {{ args }}
|
|
|
|
[no-exit-message]
|
|
shell:
|
|
@docker compose exec php bash
|
|
|
|
bash: shell
|
|
|
|
migrate: up
|
|
docker compose run --rm php bin/console doctrine:migrations:migrate --no-interaction
|
|
|
|
fixtures:
|
|
docker compose exec php bin/console doctrine:fixtures:load --purge-with-truncate --no-interaction
|
|
|
|
translations:
|
|
docker compose exec php bin/console translation:extract --force --format=xliff --sort=asc --clean nl
|
|
|
|
fix-cs:
|
|
docker compose exec php vendor/bin/php-cs-fixer fix
|
|
docker compose exec php vendor/bin/twig-cs-fixer fix
|
|
|
|
rector *args:
|
|
docker compose exec php vendor/bin/rector {{ args }}
|
|
|
|
phpstan *args:
|
|
docker compose exec php vendor/bin/phpstan analyse {{ args }}
|
|
|
|
[confirm]
|
|
clean:
|
|
docker compose down -v --remove-orphans
|
|
rm -rf vendor var assets/vendor public/assets public/bundles .php-cs-fixer.cache .twig-cs-fixer.cache
|