Imported MEAN stack files
This commit is contained in:
61
server.js
Executable file
61
server.js
Executable file
@@ -0,0 +1,61 @@
|
||||
/**
|
||||
* Module dependencies.
|
||||
*/
|
||||
var express = require('express'),
|
||||
fs = require('fs'),
|
||||
passport = require('passport'),
|
||||
logger = require('mean-logger');
|
||||
|
||||
/**
|
||||
* Main application entry file.
|
||||
* Please note that the order of loading is important.
|
||||
*/
|
||||
|
||||
//Load configurations
|
||||
//if test env, load example file
|
||||
var env = process.env.NODE_ENV = process.env.NODE_ENV || 'development',
|
||||
config = require('./config/config'),
|
||||
auth = require('./config/middlewares/authorization'),
|
||||
mongoose = require('mongoose');
|
||||
|
||||
//Bootstrap db connection
|
||||
var db = mongoose.connect(config.db);
|
||||
|
||||
//Bootstrap models
|
||||
var models_path = __dirname + '/app/models';
|
||||
var walk = function(path) {
|
||||
fs.readdirSync(path).forEach(function(file) {
|
||||
var newPath = path + '/' + file;
|
||||
var stat = fs.statSync(newPath);
|
||||
if (stat.isFile()) {
|
||||
if (/(.*)\.(js$|coffee$)/.test(file)) {
|
||||
require(newPath);
|
||||
}
|
||||
} else if (stat.isDirectory()) {
|
||||
walk(newPath);
|
||||
}
|
||||
});
|
||||
};
|
||||
walk(models_path);
|
||||
|
||||
//bootstrap passport config
|
||||
require('./config/passport')(passport);
|
||||
|
||||
var app = express();
|
||||
|
||||
//express settings
|
||||
require('./config/express')(app, passport, db);
|
||||
|
||||
//Bootstrap routes
|
||||
require('./config/routes')(app, passport, auth);
|
||||
|
||||
//Start the app by listening on <port>
|
||||
var port = process.env.PORT || config.port;
|
||||
app.listen(port);
|
||||
console.log('Express app started on port ' + port);
|
||||
|
||||
//Initializing logger
|
||||
logger.init(app, passport, mongoose);
|
||||
|
||||
//expose app
|
||||
exports = module.exports = app;
|
Reference in New Issue
Block a user