From 990c8c5c36d16027c193978552a969d8f4041066 Mon Sep 17 00:00:00 2001 From: Didictateur Date: Thu, 16 Oct 2025 16:19:39 +0200 Subject: [PATCH] improved makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index c8d39ac..4bfe6d0 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,12 @@ docker: @echo "Frontend is running at http://localhost:3000" @echo "Backend is running at http://localhost:4000" +stop: + docker-compose -f deploy/docker-compose.dev.yml down + @echo "Stopped." + +restart: stop docker + sync-frontend: @echo "Syncing frontend source -> public for dev..." @rsync -av --exclude node_modules --exclude .git --delete frontend/src/ frontend/public/src/