fix: railway deployments

This commit is contained in:
2024-03-18 20:46:33 +01:00
committed by GitHub
parent 087619552e
commit 6381692141

View File

@@ -258,6 +258,6 @@ app.get('/ping', (req, res) => {
})
const port = 4000
app.listen(port, '::', () => {
app.listen(port, '0.0.0.0', () => {
console.log(`Server listening on [::]${port}`)
})