mirror of
https://github.com/thelounge/thelounge
synced 2024-11-27 06:20:26 +00:00
Bring back process.env variables
This commit is contained in:
parent
62b15ab193
commit
4dc9c66859
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ program
|
|||
console.log("");
|
||||
} else {
|
||||
shout({
|
||||
host: program.host || config.host,
|
||||
port: program.port || config.port,
|
||||
host: program.host || process.env.IP || config.host,
|
||||
port: program.port || process.env.PORT || config.port,
|
||||
bind: program.bind || config.bind,
|
||||
public: mode
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue