From e1dc8850c03143b5a784fe0e3a46efada369d724 Mon Sep 17 00:00:00 2001 From: r-dev Date: Thu, 15 Jan 2026 13:38:55 +0100 Subject: [PATCH] feat(make): nettoyer le cache Symfony --- makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index fb1ae6f..fd0748a 100644 --- a/makefile +++ b/makefile @@ -55,7 +55,7 @@ composer-install: build-nuxtJS: # $(EXEC_PHP) cp -n Inventory_frontend/.env.dist Inventory_frontend/.env.local - $(EXEC_PHP) sh -lc "cd Inventory_frontend && npm install && npm run build:dist" + $(EXEC_PHP) sh -lc "cd Inventory_frontend && npm install && npm run generate" dev-nuxt: $(EXEC_PHP) sh -c "cd Inventory_frontend && npm run dev" @@ -90,6 +90,10 @@ db-restart: cache-clear: $(SYMFONY_CONSOLE) cache:clear +cache-clear-full: + $(SYMFONY_CONSOLE) cache:clear + $(EXEC_PHP) rm -rf var/cache/* + copy-git-hook: $(EXEC_PHP) cp pre-commit .git/hooks/ $(EXEC_PHP) cp commit-msg .git/hooks/