From 4900db1e989c3dfb142668645071269774c7b0ba Mon Sep 17 00:00:00 2001 From: adjoly Date: Sat, 13 Sep 2025 13:15:27 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix(start):=20?= =?UTF-8?q?fixed=20port=20for=20scoreStore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/start.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/start.js b/src/start.js index 6175791..df7bc0e 100644 --- a/src/start.js +++ b/src/start.js @@ -61,7 +61,7 @@ async function start() { if (target === 'scoreStore' || target === 'all') { const score = Fastify({ logger: loggerOption('scoreStore') }); score.register(scoreApi); - const port = target === 'all' ? 3002 : 3000; + const port = target === 'all' ? 3003 : 3000; const host = target === 'all' ? '127.0.0.1' : '0.0.0.0'; await score.listen({ port, host }); console.log(`ScoreStore API listening on http://${host}:${port}`);