From 6c9dc56109613562f9c2a74d5228299a7c847422 Mon Sep 17 00:00:00 2001 From: Praveen Date: Sun, 30 Nov 2025 16:45:48 +0530 Subject: [PATCH] Because the frontend also uses port 3000, running both the backend and frontend at the same time results in a port conflict. --- .env.example | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index f7fa000..4a468c8 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,7 @@ # Server Configuration -PORT=3000 +#PORT=3000 +#Because the frontend also uses port 3000, running both the backend and frontend at the same time results in a port conflict. +PORT=3001 NODE_ENV=development LOG_LEVEL=info