-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
43 lines (34 loc) · 950 Bytes
/
app.js
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
36
37
38
39
40
41
42
43
/*!
* Cicee
* Copyright(c) 2013 Juno Leung <[email protected]>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var express = require('express');
var fs = require('fs');
/**
* 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 || 'development',
config = require('./config/config')[env];
// Bootstrap models
var models_path = __dirname + '/app/models';
fs.readdirSync(models_path).forEach(function(file) {
if (~file.indexOf('.js')) require(models_path + '/' + file);
});
var app = express();
// express settings
require('./config/setting')(app, config);
// Bootstrap routes
require('./config/routes')(app);
// Start the app by listening on <port>
var port = process.env.PORT || config.httpPort;
app.listen(port);
console.log('Express app started on port ' + port);
// expose app
exports = module.exports = app;