added port env

This commit is contained in:
Kevsl 2024-06-06 16:50:50 +02:00
parent 9f5c23c7c9
commit 7648b6432a

View File

@ -22,6 +22,6 @@ async function bootstrap() {
})
);
await app.listen(3000);
await app.listen(process.env.PORT || 3000);
}
bootstrap();