This commit is contained in:
2026-02-06 15:43:43 +09:00
parent 921455749e
commit c47f710da6
2 changed files with 15 additions and 7 deletions

View File

@@ -101,7 +101,7 @@ app.get(/.*/, (req, res) => {
});
initializeDB().then(() => {
app.listen(PORT, () => {
console.log(`Server running on http://localhost:${PORT}`);
app.listen(PORT, '0.0.0.0', () => {
console.log(`Server running on http://0.0.0.0:${PORT}`);
});
});