28 lines
No EOL
777 B
JavaScript
28 lines
No EOL
777 B
JavaScript
//Dependencies
|
|
var express = require('express');
|
|
var webapp = express();
|
|
var Promise = require('promise');
|
|
//var morgan = require('morgan');
|
|
|
|
//OpenShift Settings
|
|
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'));
|
|
|
|
//External Routing
|
|
webapp.get('/', function (req, res) {
|
|
console.log('works as expected');
|
|
res.send('Hello World Again!');
|
|
});
|
|
|
|
//webapp.use('/public', express.static(__dirname + '/public'));
|
|
|
|
//Webapp Initialize
|
|
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; |