Use PORT and IP environment variables

This makes Shout Heroku / Dokku / Plusku compatible.
This commit is contained in:
Stuart P. Bentley 2014-09-09 04:12:23 -07:00
parent 273e3acf13
commit 3cfa1f42b2
1 changed files with 23 additions and 23 deletions

View File

@ -16,8 +16,8 @@ program
console.log("Create a new user with 'shout add <name>'.")
console.log("");
} else {
var host = program.host || config.host;
var port = program.port || config.port;
var host = program.host || process.env.IP || config.host;
var port = program.port || process.env.PORT || config.port;
shout(port, host, config.public);
}
});