-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.js
36 lines (26 loc) · 1014 Bytes
/
web.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
var express = require('express')
, fs = require('fs')
, passport = require('passport')
require('express-namespace')
var env = process.env.NODE_ENV || 'development'
, config = require('./config/envconfig')[env]
// Bootstrap db connection
var mongoose = require('mongoose')
, Schema = mongoose.Schema
//mongoose.connect(config.db)
// Bootstrap models
var models_path = __dirname + '/app/models'
, model_files = fs.readdirSync(models_path)
model_files.forEach(function (file) {
require(models_path+'/'+file)
})
// bootstrap passport config
require('./config/passport').boot(passport, config)
var app = express() // express app
require('./settings').boot(app, config, passport) // Bootstrap application settings
// Bootstrap routes
require('./config/routes')(app, passport)
// Start the app by listening on <port>
var port = process.env.PORT || 3001
app.listen(port)
console.log('Express app started on port '+port)