NEW RELEASE

This commit is contained in:
2026-04-25 15:26:54 +05:00
parent 0aef6df9f4
commit 6de5e63841
2 changed files with 2 additions and 2 deletions

View File

@@ -391,7 +391,7 @@ async function start() {
const now = new Date();
if (now.getDate() === 1 && now.getHours() === 0) await resetMonthlyBalances();
}, 3600000);
app.listen(PORT, () => console.log(`CYPHER-HR running on http://localhost:${PORT}`));
app.listen(PORT, '0.0.0.0', () => console.log(`CYPHER-HR running on http://0.0.0.0:${PORT}`));
} catch (err) { console.error('Failed to start:', err); process.exit(1); }
}