bind to external

This commit is contained in:
Ben Wilson 2023-06-21 15:55:06 -04:00
parent 2547b06a48
commit 88f56d68b1

View File

@ -18,7 +18,7 @@ async function bootstrap() {
);
app.enableCors();
await app.listen(process.env.PORT);
await app.listen(process.env.PORT, '0.0.0.0');
console.log(`http listening on port ${process.env.PORT}`)
}
bootstrap();