mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 12:44:20 +01:00
This commit adds initial importmap configuration to manage assets, updates the elimination preparation workflow with form enhancements and database changes, introduces new styles and JS assets, refines translations, and improves entity handling with an input bag update method.
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 --domain=messages --force --format=yaml --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
|