Obey process.env.PORT
This commit is contained in:
parent
33b3523bf4
commit
bd7583a254
@ -34,7 +34,7 @@ const main = async (args: Args): Promise<void> => {
|
||||
commit: commit || "development",
|
||||
host: args.host || (args.auth === AuthType.Password && typeof args.cert !== "undefined" ? "0.0.0.0" : "localhost"),
|
||||
password: originalPassword ? hash(originalPassword) : undefined,
|
||||
port: typeof args.port !== "undefined" ? args.port : 8080,
|
||||
port: typeof args.port !== "undefined" ? args.port : process.env.PORT !== "" ? process.env.PORT : 8080,
|
||||
socket: args.socket,
|
||||
}
|
||||
if (!options.cert && args.cert) {
|
||||
|
@ -100,7 +100,7 @@ export interface HttpServerOptions {
|
||||
readonly commit?: string
|
||||
readonly host?: string
|
||||
readonly password?: string
|
||||
readonly port?: number
|
||||
readonly port?: number | string
|
||||
readonly socket?: string
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user