Loading backend/src/constants/server.contants.ts +2 −2 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ import * as dotenv from 'dotenv'; dotenv.config(); export class ServerConstants { public static readonly PORT: number = process.env.PORT ? parseInt(process.env.PORT) static PORT: number = process.env.SERVER_PORT ? parseInt(process.env.SERVER_PORT) : 3003; } Loading
backend/src/constants/server.contants.ts +2 −2 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ import * as dotenv from 'dotenv'; dotenv.config(); export class ServerConstants { public static readonly PORT: number = process.env.PORT ? parseInt(process.env.PORT) static PORT: number = process.env.SERVER_PORT ? parseInt(process.env.SERVER_PORT) : 3003; }