Commit b0d62c19 authored by Diego Iván's avatar Diego Iván
Browse files

agregando constantes del servidor

parent 34812e9c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}