Skip to content

Commit 576b18b

Browse files
authored
fix: wrong env name
1 parent 618c699 commit 576b18b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/deployment-api/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ async function bootstrap() {
77
rawBody: true,
88
});
99
app.useBodyParser('raw', { limit: "500mb" });
10-
await app.listen(Number(process.env.APP_PORT) || 3000);
10+
await app.listen(Number(process.env.PORT) || 3000);
1111
}
1212
bootstrap().then();

0 commit comments

Comments
 (0)