Expose environmental variables

This commit is contained in:
briandavidjoyner 2017-11-04 18:29:29 -04:00
parent 5c731b4b89
commit 7904fe7980

View file

@ -23,5 +23,6 @@ webapp.get('/', function (req, res) {
webapp.listen(port, ip);
//console.log('live on ip: ' + ip + ':' + port);
console.log('Server running on http://%s:%s', ip, port);
console.log(JSON.stringify(process.env));
module.exports = webapp;