Webapp to app

This commit is contained in:
briandavidjoyner 2017-11-04 19:22:58 -04:00
parent f837677aaa
commit 68d1ba7591
1 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
//Dependencies
var express = require('express');
var webapp = express();
var app = express();
//var Promise = require('promise');
//var morgan = require('morgan');
@ -9,19 +9,19 @@ var ip = process.env.IP || process.env.OPENSHIFT_NODEJS_IP || '0.0.0.0';
var port = process.env.PORT || process.env.OPENSHIFT_NODEJS_PORT || 8080;
//Reporting
//webapp.use(morgan('combined'));
//app.use(morgan('combined'));
//External Routing
webapp.get('/', function (req, res) {
app.get('/', function (req, res) {
console.log('works as expected');
res.send('<p>some html</p>');
//res.send('Hello World Again!');
});
//webapp.use('/public', express.static(__dirname + '/public'));
//app.use('/public', express.static(__dirname + '/public'));
//Webapp Initialize
webapp.listen(port, ip);
//app Initialize
app.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));