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/