mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-25 15:55:40 -04:00
set the port by env.PORT, specific node version in package.json
This commit is contained in:
parent
435e4faef3
commit
063697c20a
2 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,7 @@ const { login } = require("./auth");
|
|||
const passwordHash = require("./password-hash");
|
||||
const version = require("../package.json").version;
|
||||
const hostname = args.host || "0.0.0.0"
|
||||
const port = args.port || 3001
|
||||
const port = process.env.PORT || args.port || 3001
|
||||
|
||||
console.info("Version: " + version)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue