Rename app to basket-utils

This commit is contained in:
2026-09-08 12:32:10 +09:00
parent d2e39a452e
commit aa5ce697ad
9 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ const { port, host } = config.server;
const app = await buildServer({ config });
try {
await app.listen({ port, host });
console.log(`court.lab server listening on http://${host}:${port}`);
console.log(`basket-utils server listening on http://${host}:${port}`);
const shutdown = async () => { try { await app.close(); } finally { process.exit(0); } };
process.once('SIGTERM', shutdown); process.once('SIGINT', shutdown);
} catch (error) {