From e476a10ad3d36218282edac4b750dd0f27851154 Mon Sep 17 00:00:00 2001 From: Saransh Sharma Date: Fri, 11 Nov 2022 15:47:52 +0530 Subject: [PATCH] Docker File and Port Settings for the Railway App --- src/app/worker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/worker.ts b/src/app/worker.ts index 2f5a6f1..13c5531 100644 --- a/src/app/worker.ts +++ b/src/app/worker.ts @@ -19,7 +19,7 @@ export class AppWorker implements IRunnable { } public run(): void { - const port = Number(process.env.SERVER_PORT) || 8008 + const port = Number(process.env.PORT) || 8008 this.adapter.listen(port) }