From f475b244c91713d3702446bc159af120fd77f423 Mon Sep 17 00:00:00 2001 From: dnviti Date: Tue, 2 Dec 2025 23:37:18 +0100 Subject: [PATCH] refactor: Adjust backend and frontend directory paths in Makefile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 728640d..3907d6c 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ .PHONY: help install build run dev clean test lint backend frontend backend-run frontend-run backend-build frontend-build all stop # Variabili -BACKEND_DIR := src/Apollinare.API -FRONTEND_DIR := frontend +BACKEND_DIR := src/backend/Apollinare.API +FRONTEND_DIR := src/frontend BACKEND_PORT := 5000 FRONTEND_PORT := 5173