From 4c84bfc80a1d0c48d3d2f2390d2a07d2f555dc78 Mon Sep 17 00:00:00 2001 From: ZareMate <0.zaremate@gmail.com> Date: Sat, 14 Mar 2026 02:00:42 +0100 Subject: [PATCH] update: change web UI server port from 3000 to 3008 --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 2c0ca4f..749f5c8 100644 --- a/index.js +++ b/index.js @@ -376,8 +376,8 @@ const server = http.createServer(async (req, res) => { res.end("Not found"); }); -server.listen(3000, () => { - pushLog("web ui running at http://localhost:3000"); +server.listen(3008, () => { + pushLog("web ui running at http://localhost:3008"); }); function sayItems(items = []) {