server.js 767 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
#!/usr/bin/env node

'use strict';

/**
 * Module dependencies.
 */
var express = require('express');

/**
 * Main application entry file.
 * Please note that the order of loading is important.
 */

// Initializing system variables
var config = require('./server/config/config');

// Load configurations
// Set the node enviornment variable if not set before
process.env.NODE_ENV = config.nodeEnv;

var app = express();

// Express settings
require('./server/config/express')(app);

// Start the app by listening on <port>
var port = process.env.PORT || config.port;
app.listen(port);

console.log('Environment is = "' + process.env.NODE_ENV + '"');
console.log('Express app started on port ' + port + ' using config\n', config);

// Expose app
module.exports = app;