From dff0cd964b93452040f0736da49d4e7106f6d00e Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 06:36:39 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20deploy=20script=20to=20?= =?UTF-8?q?log=20backend=20port=20separately?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/utils/deploy-pokedex.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/utils/deploy-pokedex.js b/code/utils/deploy-pokedex.js index 97c4934..8e28185 100644 --- a/code/utils/deploy-pokedex.js +++ b/code/utils/deploy-pokedex.js @@ -214,10 +214,11 @@ async function deploy() { console.log( `šŸ“” Target: ${config.target} (${sshConfig.host}:${sshConfig.port})` ); - console.log(`šŸ”Œ HTTP Port: ${config.port}`); + console.log(`šŸ”Œ Frontend Port: ${config.port}`); if (config.sslPort) { console.log(`šŸ”’ HTTPS Port: ${config.sslPort}`); } + console.log(`šŸ”Œ Backend Port: ${config.backendPort}`); // Connect to Synology console.log('\nšŸ” Connecting to Synology...');