From 7ad70a39233cb9f028642f90b1175778e6e52194 Mon Sep 17 00:00:00 2001 From: Kacper Date: Thu, 18 Dec 2025 15:24:38 +0100 Subject: [PATCH] fix: update port references in init.mjs for server availability - Changed the port from 3007 to 5173 in the logging and server availability messages to reflect the new configuration. - Ensured that the process killing function targets the correct port for consistency in server setup. --- init.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.mjs b/init.mjs index 500a9115..976d30e5 100644 --- a/init.mjs +++ b/init.mjs @@ -301,8 +301,8 @@ async function main() { } // Kill any existing processes on required ports - log('Checking for processes on ports 3007 and 3008...', 'yellow'); - await killPort(3007); + log('Checking for processes on ports 5173 and 3008...', 'yellow'); + await killPort(5173); await killPort(3008); console.log(''); @@ -377,7 +377,7 @@ async function main() { } log('✓ Server is ready!', 'green'); - log(`The application will be available at: http://localhost:3007`, 'green'); + log(`The application will be available at: http://localhost:5173`, 'green'); console.log(''); // Start web app